/* TeamAlbania-specific styles - only loaded on this page */
.teamalbania-page {
    font-family: ui-sans-serif, system-ui, -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, "Helvetica Neue", Arial, "Noto Sans", sans-serif;
    line-height: 1.5;
    color: #1f2937;
    background: #ffffff;
}

.teamalbania-page .hero-section {

    padding: 4rem 1rem 2rem;
    text-align: center;
    position: relative;
    color: white;
    width: 100vw;
    margin-left: calc(-50vw + 50%);
    margin-right: calc(-50vw + 50%);
}

.teamalbania-page .hero-section::before {
    content: '';
    position: absolute;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.4);
    z-index: 1;
}

.teamalbania-page .hero-content {
    max-width: 64rem;
    margin: 0 auto;
    position: relative;
    z-index: 2;
}

.team-video-wrapper {
    /*max-height: 500px;*/
    overflow: hidden; /* Hides overflow if video is taller */
    margin-top: -35px;
}

.team-video-wrapper video {
    width: 100%;
    height: auto;
    object-fit: cover;
}


.teamalbania-page .content-section {
    background-color: #1B4778;
    padding: 2rem 1rem 0rem;
    text-align: center;
    color: white;
}

.teamalbania-page .content-section .cybersec-logo {
    margin-bottom: 2rem;
}

.teamalbania-page .content-section .main-content {
    max-width: 90rem; /* Increased from 80rem for wider content */
    margin: 0 auto 3rem;
    font-size: 1.125rem;
    line-height: 1.75;
    text-align: justify;
    color: rgba(255, 255, 255, 0.9);
    padding: 0 3rem; /* Increased padding */
}

.teamalbania-page .content-section .main-content p {
    margin-bottom: 1.5rem;
}

.teamalbania-page .content-section .main-content a {
    color: white;
    text-decoration: underline;
    font-weight: 500;
}

.teamalbania-page .content-section .main-content strong {
    font-weight: 600;
    color: white;
}

.teamalbania-page .hero-title {
    font-size: 3.75rem;
    font-weight: 800;
    color: white;
    margin-bottom: 2rem;
    line-height: 1.1;
}

.teamalbania-page .hero-title .highlight {
    color: white;
}

.teamalbania-page .btn-group {
    display: flex;
    gap: 1rem;
    justify-content: center;
    flex-wrap: wrap;
}

.teamalbania-page .btn-primary, .teamalbania-page .btn-secondary {
    padding: 0.75rem 1.5rem;
    border-radius: 0.375rem;
    font-weight: 500;
    font-size: 1rem;
    text-decoration: none;
    display: inline-block;
    transition: all 0.15s ease-in-out;
    border: none;
    cursor: pointer;
}

.teamalbania-page .btn-primary {
    background-color: #DC3545;
    color: white;
}

.teamalbania-page .btn-primary:hover {
    background-color: #c82333;
    text-decoration: none;
    color: white;
}

.teamalbania-page .btn-secondary {
    border: 1px solid #DC3545;
    color: #DC3545;
    background: white;
}

.teamalbania-page .btn-secondary:hover {
    background-color: #DC3545;
    text-decoration: none;
    color: white;
}

.teamalbania-page .team-section {
    background-color: #f9fafb;
    padding: 5rem 1rem;
}

.teamalbania-page .team-container {
    max-width: 80rem; /* Increased from 64rem */
    margin: 0 auto;
}

.teamalbania-page .section-title {
    font-size: 2.5rem;
    font-weight: 700;
    color: #DC3545;
    text-align: center;
    margin-bottom: 4rem;
}

.teamalbania-page .subsection-title {
    font-size: 2rem;
    font-weight: 600;
    color: #111827;
    text-align: center;
    margin-bottom: 2.5rem;
}

/* Team Grid - 5 columns with better spacing */
.teamalbania-page .team-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem; /* Increased gap for bigger containers */
    margin-bottom: 4rem;
    max-width: 1500px; /* Increased from 1400px */
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

/* Team Cards - Bigger containers */
.teamalbania-page .team-card {
    background: white;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    height: 100%;
    display: block;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    min-width: 280px; 
}

.teamalbania-page .team-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
}

/* Member Avatar - Bigger image */
.teamalbania-page .member-avatar {
    width: 100%;
    height: 280px; 
    border-radius: 0;
    margin: 0;
    overflow: hidden;
    position: relative;
}

.teamalbania-page .member-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover; /* Changed from contain to cover for proper image fitting */
}

.teamalbania-page .member-avatar svg {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    width: 4rem;
    height: 4rem;
}

/* Member Info - Blue background, white text */
.teamalbania-page .member-info {
    padding: 1.5rem 1rem;
    background: #1B4778; /* Blue background */
    transition: all 0.3s ease;
    text-align: center;
    min-height: 4rem; /* Reduced since no role shown */
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.teamalbania-page .member-name {
    font-size: 1.1rem;
    font-weight: 600;
    color: white; /* White text */
    margin: 0;
    line-height: 1.4;
    text-align: center;
}

.teamalbania-page .member-role {
    font-size: 0.9rem;
    color: rgba(255, 255, 255, 0.8);
    margin: 0;
    text-align: center;
    line-height: 1.3;
    display: none; /* Hidden by default, only shown in modal */
}

/* Hover effect - Red background */
.teamalbania-page .team-card:hover .member-info {
    background-color: #DC3545 !important;
}

.teamalbania-page .team-card:hover .member-name {
    color: white !important;
}

/* Coaches Grid - Better spacing and bigger containers */
.teamalbania-page .coaches-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 2.5rem;
    max-width: 1280px;
    margin: 0 auto;
    padding: 0 1rem;
}

.teamalbania-page .coaches-grid .team-card {
    background: white;
    border-radius: 0.5rem;
    overflow: hidden;
    min-width: 300px; /* Ensure minimum width for coaches */
}

.teamalbania-page .content-section .cybersec-logo {
    margin-bottom: 2rem;
}

.teamalbania-page .sponsors-section {
    background-color: white;
    padding: 0rem 5rem;
}

.teamalbania-page .sponsor-title-red {
    background-color: #DC3545;
    color: white;
    padding: 1rem 0;
    margin: 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    text-align: left;
    padding-left: 5rem;
}

.teamalbania-page .sponsor-title-blue {
    background-color: #1B4778;
    color: white;
    padding: 1rem 0;
    margin: 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    text-align: left;
    padding-left: 5rem;
}

.teamalbania-page .sponsor-content {
    background: white;
    padding: 2rem 2rem; /* Reduced top and bottom padding from 2rem to 1rem */
    text-align: center;
}

.teamalbania-page .sponsors-container {
    max-width: 80rem; /* Increased from 64rem */
    margin: 0 auto;
}

.teamalbania-page .support-cta {
    text-align: center;
    margin-bottom: 4rem;
}

.teamalbania-page .sponsor-grid {
    display: grid;
    gap: 2.5rem;
    align-items: center;
    justify-items: center;
}

.teamalbania-page .sponsor-grid.platinum {
    grid-template-columns: 1fr;
}

.teamalbania-page .sponsor-grid.support {
    grid-template-columns: repeat(auto-fit, minmax(12rem, 1fr));
}

.teamalbania-page .sponsor-grid.patronage {
    grid-template-columns: repeat(auto-fit, minmax(10rem, 1fr));
}

.teamalbania-page .sponsor-card {
    display: inline-block;
    transition: all 0.15s ease-in-out;
    text-decoration: none;
    text-align: center; /* Center the sponsor cards */
}

.teamalbania-page .sponsor-card:hover {
    transform: translateY(-2px);
    text-decoration: none;
}

.teamalbania-page .sponsor-logo,
.teamalbania-page .sponsor-logo-aksk {
    height: 12rem; /* Increased size */
    width: auto;
    max-width: 100%;
    object-fit: contain;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    padding-top: 0;
}

/* Display sponsor logos in a row */
.teamalbania-page .sponsor-grid,
.teamalbania-page .sponsor-grid.platinum,
.teamalbania-page .sponsor-grid.support,
.teamalbania-page .sponsor-grid.patronage {
    display: flex !important;
    flex-direction: row !important;
    flex-wrap: wrap;
    gap: 8rem; /* Increased gap for more space */
    align-items: center;
    justify-content: center;
}

/* Remove column-specific grid-template-columns for sponsor grids */
.teamalbania-page .sponsor-grid.platinum,
.teamalbania-page .sponsor-grid.support,
.teamalbania-page .sponsor-grid.patronage {
    grid-template-columns: none !important;
}

.teamalbania-page .sponsor-logo {
    height: 10rem; 
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

.teamalbania-page .sponsor-logo-aksk {
    padding-top: 0;
    margin-top: 0 !important;
    margin-bottom: 0 !important;
    height: 12rem;
    width: auto;
    max-width: 100%;
    object-fit: contain;
}

/* Specific sizing for patronage sponsors (make them even smaller) */
.teamalbania-page .sponsor-grid.patronage .sponsor-logo {
    height: 6rem; /* Even smaller for patronage logos */
}

.teamalbania-page .sponsor-placeholder {
    background: #f3f4f6;
    border: 2px dashed #d1d5db;
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    color: #6b7280;
    font-weight: 500;
}

.teamalbania-page .section-divider {
    height: 1px;
    background: linear-gradient(90deg, transparent, #e5e7eb, transparent);
    margin: 2.5rem 0;
}

.teamalbania-page .support-cta .subsection-title {
    font-size: 1.75rem;
    margin-bottom: 1rem;
}

/* Updated News Section */
.teamalbania-page .news-section {
    background-color: #f9fafb;
    padding: 0 1rem 6rem 1rem;
}

.teamalbania-page .news-section .section-title {
    background-color: #1B4778;
    color: white;
    padding: 1rem 0;
    margin: 0 0 4rem 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    text-align: left;
    padding-left: 5rem;
}

.teamalbania-page .news-container {
    max-width: 80rem;
    margin: 0 auto;
}

.teamalbania-page .news-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 2.5rem;
    max-width: 1200px;
    margin-left: auto;
    margin-right: auto;
    padding: 0 1rem;
}

.teamalbania-page .news-card {
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 1px 3px 0 rgba(0, 0, 0, 0.1);
    height: 300px;
    display: block;
    text-decoration: none;
    color: inherit;
    transition: all 0.3s ease;
    position: relative;
    cursor: pointer;
}

.teamalbania-page .news-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(0, 0, 0, 0.2);
    text-decoration: none;
    color: inherit;
}

.teamalbania-page .news-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    position: absolute;
    top: 0;
    left: 0;
}

.teamalbania-page .news-content {
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    background: rgba(0, 0, 0, 0.7);
    padding: 0.5rem;
    color: white;
    transition: all 0.3s ease;
}

.teamalbania-page .news-card:hover .news-content {
    background: rgba(220, 53, 69, 0.9);
}

.teamalbania-page .news-date {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.8);
    margin-bottom: 0.5rem;
}

.teamalbania-page .news-title {
    font-size: 1rem;
    font-weight: 600;
    color: white;
    line-height: 1.5;
    margin: 0;
}

.teamalbania-page .news-excerpt {
    font-size: 0.875rem;
    color: rgba(255, 255, 255, 0.9);
    margin-top: 0.1rem;
    line-height: 1.4;
    text-align: left;
}

/* Updated Gallery Section */
.teamalbania-page .gallery-section {
    background-color: #f9fafb;
    padding: 0 1rem 6rem 1rem;
}

.teamalbania-page .gallery-section .section-title {
    background-color: #DC3545;
    color: white;
    padding: 1rem 0;
    margin: 0 0 4rem 0;
    width: 100vw;
    position: relative;
    left: 50%;
    right: 50%;
    margin-left: -50vw;
    margin-right: -50vw;
    text-align: left;
    padding-left: 5rem;
}

.teamalbania-page .gallery-container {
    max-width: 80rem; /* Increased from 64rem */
    margin: 0 auto;
}

.teamalbania-page .gallery-carousel {
    position: relative;
    max-width: 1200px;
    margin: 0 auto;
    border-radius: 0.5rem;
    overflow: hidden;
    box-shadow: 0 10px 25px -3px rgba(0, 0, 0, 0.1);
}

.teamalbania-page .carousel-track {
    position: relative;
    width: 100%;
    height: 600px;
}

.teamalbania-page .carousel-slide {
    position: absolute;
    width: 100%;
    height: 100%;
    opacity: 0;
    transition: opacity 0.5s ease-in-out;
}

.teamalbania-page .carousel-slide.active {
    opacity: 1;
}

.teamalbania-page .carousel-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.teamalbania-page .carousel-btn {
    position: absolute;
    top: 50%;
    transform: translateY(-50%);
    background: rgba(0, 0, 0, 0.5);
    color: white;
    border: none;
    padding: 1rem;
    font-size: 1.5rem;
    cursor: pointer;
    border-radius: 0.25rem;
    transition: background 0.3s ease;
    z-index: 10;
}

.teamalbania-page .carousel-btn:hover {
    background: rgba(0, 0, 0, 0.8);
}

.teamalbania-page .prev-btn {
    left: 1rem;
}

.teamalbania-page .next-btn {
    right: 1rem;
}

.teamalbania-page .carousel-dots {
    text-align: center;
    padding: 1rem 0;
    background: rgba(0, 0, 0, 0.1);
}

.teamalbania-page .dot {
    height: 12px;
    width: 12px;
    margin: 0 5px;
    background-color: rgba(255, 255, 255, 0.5);
    border-radius: 50%;
    display: inline-block;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.teamalbania-page .dot.active,
.teamalbania-page .dot:hover {
    background-color: white;
}

/* Thumbnail gallery styles */
.teamalbania-page .thumbnail-gallery {
    display: flex;
    justify-content: center;
    gap: 1rem;
    margin-top: 2rem;
    padding: 0 1rem;
    flex-wrap: wrap;
}

.teamalbania-page .thumbnail {
    width: 100px;
    height: 80px;
    border-radius: 0.375rem;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
    border: 3px solid transparent;
}

.teamalbania-page .thumbnail:hover {
    transform: scale(1.05);
}

.teamalbania-page .thumbnail.active {
    border-color: #DC3545;
}

.teamalbania-page .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.teamalbania-page .content-section .cybersec-logo img {
    height: 8rem; /* Reduced from 10rem to make it smaller */
    width: auto;
}

/* Add smooth scrolling for better experience */
.teamalbania-page {
    scroll-behavior: smooth;
}

/* Modal Styles */
.teamalbania-page .modal-overlay {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.9);
    backdrop-filter: blur(5px);
}

.teamalbania-page .modal-overlay.active {
    display: flex;
    justify-content: center;
    align-items: center;
}

.teamalbania-page .modal-content {
    background: white;
    border-radius: 1rem;
    padding: 1.4rem;
    max-width: 980px;
    width: 90%;
    position: relative;
    text-align: center;
    box-shadow: 0 25px 50px -12px rgba(0, 0, 0, 0.4);
    transform: translateY(-100vh);
    transition: transform 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

.teamalbania-page .modal-overlay.active .modal-content {
    transform: translateY(0);
}

.teamalbania-page .modal-close {
    position: absolute;
    top: 1.5rem;
    right: 2rem;
    font-size: 2.5rem;
    color: #6b7280;
    cursor: pointer;
    font-weight: bold;
    transition: color 0.3s ease;
    z-index: 1001;
}

.teamalbania-page .modal-close:hover {
    color: #DC3545;
}

.teamalbania-page .modal-image {
    width: 400px;
    /* height: 600px; */ 
    border-radius: 1rem;
    object-fit: contain;
    margin: 0 auto 2rem;
    display: block;
    border: 6px solid #DC3545;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.3);
}

.teamalbania-page .modal-name {
    font-size: 2rem;
    font-weight: 700;
    color: #111827;
    margin: 0 0 1rem 0;
}

.teamalbania-page .modal-role {
   /* font-size: 1.5rem; */
    color: #6b7280;
    margin: 0;
}

/* Add cursor pointer to clickable cards */
.teamalbania-page .team-card {
    cursor: pointer;
}

/* Responsive design */
@media (max-width: 1024px) {
    .teamalbania-page .team-grid {
        grid-template-columns: repeat(4, 1fr);
        max-width: 1200px;
        gap: 2rem;
    }
    
    .teamalbania-page .coaches-grid {
        grid-template-columns: repeat(auto-fit, minmax(280px, 1fr));
        gap: 2rem;
    }
    
    .teamalbania-page .member-avatar {
        height: 16rem;
    }

    .teamalbania-page .news-grid {
        grid-template-columns: repeat(3, 1fr);
        max-width: 1000px;
        gap: 2rem;
    }
}

@media (max-width: 768px) {
    .teamalbania-page .hero-section {
        padding: 3rem 1rem 4rem;
    }
    
    .teamalbania-page .hero-title {
        font-size: 2.5rem;
    }
    
    .teamalbania-page .team-grid {
        grid-template-columns: repeat(3, 1fr);
        gap: 1.5rem;
        padding: 0 1rem;
        max-width: 900px;
    }
    
    .teamalbania-page .coaches-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        max-width: 600px;
    }
    
    .teamalbania-page .news-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1.5rem;
        padding: 0 1rem;
        max-width: 600px;
    }
    
    .teamalbania-page .btn-group {
        flex-direction: column;
        align-items: stretch;
    }
    
    .teamalbania-page .btn-group a {
        text-align: center;
    }
    
    .teamalbania-page .carousel-btn {
        padding: 0.5rem;
        font-size: 1.2rem;
    }
    
    .teamalbania-page .carousel-track {
        height: 250px;
    }
    
    .teamalbania-page .content-section .main-content {
        max-width: 100%;
        padding: 0 2rem;
        font-size: 1.1rem;
    }
    
    .teamalbania-page .member-avatar {
        height: 14rem;
    }
    
    .teamalbania-page .member-info {
        padding: 1.25rem 0.75rem;
        min-height: 3.5rem;
    }
    
    .teamalbania-page .team-card {
        min-width: 180px;
    }
    
    .teamalbania-page .modal-image {
        width: 300px;
        height: 450px;
    }
    
    .teamalbania-page .modal-content {
        max-width: 90%;
        padding: 2rem;
    }
    
    .teamalbania-page .modal-name {
        font-size: 2rem;
    }
    
 

    .teamalbania-page .sponsor-title-red,
    .teamalbania-page .sponsor-title-blue,
    .teamalbania-page .news-section .section-title,
    .teamalbania-page .gallery-section .section-title {
        padding-left: 1rem;
    }
}

@media (max-width: 480px) {
    .teamalbania-page .hero-title {
        font-size: 2rem;
    }
    
    .teamalbania-page .team-grid {
        grid-template-columns: repeat(2, 1fr);
        gap: 1rem;
        max-width: 500px;
    }
    
    .teamalbania-page .coaches-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 350px;
    }
    
    .teamalbania-page .content-section .main-content {
        padding: 0 1rem;
        font-size: 1rem;
    }
    
    .teamalbania-page .member-avatar {
        height: 12rem;
    }
    
    .teamalbania-page .member-info {
        padding: 1rem 0.5rem;
        min-height: 3rem;
    }
    
    .teamalbania-page .member-name {
        font-size: 1rem;
    }
    
    .teamalbania-page .team-card {
        min-width: 150px;
    }
    
    .teamalbania-page .modal-image {
        width: 250px;
        height: 350px;
    }
    
    .teamalbania-page .modal-name {
        font-size: 1.75rem;
    }
    
    

    .teamalbania-page .news-grid {
        grid-template-columns: 1fr;
        gap: 1rem;
        max-width: 400px;
    }

    .teamalbania-page .sponsor-title-red,
    .teamalbania-page .sponsor-title-blue,
    .teamalbania-page .news-section .section-title,
    .teamalbania-page .gallery-section .section-title {
        padding-left: 0.5rem;
    }

	.team-video-wrapper { /* heqja e margin negativ ne mobile */
	margin-top:0px; }
}

/* Mobile and Tablet Modal Fixes */
@media (max-width: 1024px) {
    .teamalbania-page .modal-content {
        max-width: 95%;
        padding: 2rem 1.5rem;
        max-height: 90vh;
        overflow-y: auto;
    }
    
    .teamalbania-page .modal-image {
        width: 100%;
        max-width: 350px;
        height: auto;
        max-height: 400px;
    }
    
    .teamalbania-page .modal-name {
        font-size: 2rem;
    }
    
   
}

@media (max-width: 768px) {
    .teamalbania-page .modal-content {
        padding: 1.5rem 1rem;
        margin: 1rem;
    }
    
    .teamalbania-page .modal-image {
        max-width: 280px;
        max-height: 350px;
    }
    
    .teamalbania-page .modal-name {
        font-size: 1.75rem;
    }
    
  
    
    .teamalbania-page .modal-close {
        top: 1rem;
        right: 1.5rem;
        font-size: 2rem;
    }
}

@media (max-width: 480px) {
    .teamalbania-page .modal-image {
        max-width: 250px;
        max-height: 300px;
    }
    
    .teamalbania-page .modal-name {
        font-size: 1.5rem;
    }
}

/* Modal placeholder fixes for mobile */
@media (max-width: 1024px) {
    .teamalbania-page #modalPlaceholder > div {
        width: 100% !important;
        max-width: 350px !important;
        height: auto !important;
        max-height: 400px !important;
        aspect-ratio: 3/4;
        margin: 0 auto 2rem;
    }
}

@media (max-width: 768px) {
    .teamalbania-page #modalPlaceholder > div {
        max-width: 280px !important;
        max-height: 350px !important;
    }
    
    .teamalbania-page #modalPlaceholder svg {
        width: 80px !important;
        height: 80px !important;
    }
}


@media (max-width: 480px) {
    .teamalbania-page #modalPlaceholder > div {
        max-width: 250px !important;
        max-height: 300px !important;
    }
    
    .teamalbania-page #modalPlaceholder svg {
        width: 60px !important;
        height: 60px !important;
    }
}
/* === RESPONSIVE FIXES FOR HEADERS === */
@media (max-width: 1024px) {
    .teamalbania-page .sponsor-title-red,
    .teamalbania-page .sponsor-title-blue {
        padding-left: 2rem;
        font-size: 1.5rem;
    }
    
    .teamalbania-page .news-section .section-title,
    .teamalbania-page .gallery-section .section-title {
        padding-left: 2rem;
        font-size: 1.5rem;
    }
}

@media (max-width: 768px) {
    .teamalbania-page .sponsor-title-red,
    .teamalbania-page .sponsor-title-blue {
        padding: 0.75rem 1rem;
        font-size: 1rem;
        text-align: center;
    }
    
    .teamalbania-page .news-section .section-title,
    .teamalbania-page .gallery-section .section-title {
        padding: 0.75rem 1rem;
        font-size: 1rem;
        text-align: center;
    }
}