@import url('https://fonts.googleapis.com/css2?family=Montserrat:ital,wght@0,100..900;1,100..900&display=swap');

/* Reset ve Genel Stiller */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Montserrat, sans-serif;
    line-height: 1.6;
    padding-top: 100px;
}

/* Modern Header Styles */
header {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    z-index: 1000;
    height: 100px;
    transition: all 0.3s ease;
    background: transparent;
}

header.scrolled {
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
}

.main-nav {
    height: 100px;
    transition: all 0.3s ease;
}

.logo {
    height: 100px;
    display: flex;
    align-items: center;
    margin-top: 30px;
}

.logo img {
    height: 100%;
    width: auto;
    transition: all 0.3s ease;
}

header.scrolled .logo img {
    height: 100px;
    margin-top: 10px;
}

.navbar-nav {
    gap: 1rem;
}

.navbar-nav .nav-item {
    position: relative;
}

.navbar-nav a {
    color: #000;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.9rem;
    letter-spacing: 0.5px;
    padding: 0 1rem;
    transition: all 0.3s ease;
    position: relative;
    display: block;
    text-decoration: none;
}

.navbar-nav a:not(.mobTitle)::after {
    content: '';
    position: absolute;
    bottom: -3px;
    left: 1rem;
    right: 1rem;
    height: 2px;
    background: #000;
    transform: scaleX(0);
    transition: transform 0.3s ease;
}

.navbar-nav a:hover::after,
.navbar-nav a.active::after {
    transform: scaleX(1);
}

.dropdown {
    position: relative;
}

.dropdown-menu {
    display: block;
    border: none;
    border-radius: 12px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
    padding: 1rem 0;
    margin-top: 1rem;
    opacity: 0;
    visibility: hidden;
    transform: translateY(10px);
    transition: all 0.3s ease;
    background: rgba(255, 255, 255, 0.95);
    backdrop-filter: blur(10px);
    left: 0;
    right: 0;
    min-width: 200px;
}

.dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    color: #000;
    font-size: 0.9rem;
    padding: 0.7rem 1.5rem;
    transition: all 0.3s ease;
}

/* Ok simgesini daha küçük yap */
.dropdown-toggle i {
    font-size: 12px;
    margin-left: 5px;
}

.dropdown-menu a:hover {
    background: rgba(26, 35, 126, 0.05);
    color: #000;
    transform: translateX(5px);
}

/* Mobil Menü Stilleri */
.navbar-toggler {
    border: none;
    padding: 0;
    width: 40px;
    height: 40px;
    position: relative;
    background: transparent;
}

.navbar-toggler:focus {
    box-shadow: none;
}

.mobTitleMain
{
    display: none;
}

.mobTitle
{
    color: black;
    text-align: center;
    font-weight: 700;
    font-size: 25px;
    display: none;
    align-items: center;
    justify-content: center;
    height: 75px;
    padding-top: 6px;
    padding-left: 7px;
}

@media (max-width: 1200px) {
    body {
        padding-top: -200px;
    }
    header {
        position: fixed;
        margin-top: -30px;
        box-shadow: 0 2px 20px rgba(0, 0, 0, 0.1);
        padding-bottom: 105px;
    }

    .main-nav {
        padding: 0.3rem 0;
    }

    .navbar-collapse {
        background: #fff;
        padding: 1rem;
        border-radius: 12px;
        box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1);
        margin-top: 1rem;
    }

    .navbar-nav {
        gap: 0;
    }

    .mobTitle
    {
        display: flex;
    }

    .navbar-nav a {
        padding: 1rem;
    }

    .dropdown-menu {
        display: none;
        border: none;
        box-shadow: none;
        padding: 0;
        margin: 0;
        background: rgba(26, 35, 126, 0.05);
        opacity: 1;
        visibility: visible;
        position: static;
        width: 100%;
        transform: none;
        transition: none;
    }

    .dropdown-menu.show {
        display: block;
    }

    .dropdown-menu a {
        padding: 1rem 2rem;
    }

    .navbar-nav a::after {
        display: none;
    }

    body {
        padding-top: 65px;
    }

    .logo img {
        height: 50px;
        margin-top: 0;
    }
    .logo  {
        margin-top: 0;
    }
    
    header.scrolled .logo img {
        height: 50px;
    }
    
}

/* Kurumsal Section */

.kurumsal {
    padding: 50px 0;
}

.container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.kurumsal-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 30px;
}

.kurumsal-item {
    text-align: center;
}

.kurumsal-item img {
    width: 100%;

    border-radius: 8px;

    margin-bottom: 15px;
}

/* Responsive Tasarım */

@media (max-width: 768px) {
    .main-nav {
        flex-direction: column;
        padding: 15px;
    }

    .nav-links {
        margin-top: 20px;
        flex-direction: column;
        text-align: center;
    }

    .hero h1 {
        font-size: 2em;
    }

    .nav-links .dropdown-menu {
        position: static;
        transform: none;
        box-shadow: none;
        margin: 10px 0;
        width: 100%;
        background: #f8f9fa;
    }

    .dropdown-menu::before {
        display: none;
    }

    .nav-links {
        width: 100%;
    }
}

.dropdown-toggle {
    display: flex;
    align-items: center;
    gap: 5px;
}

.dropdown-toggle:after {
    content: '▼';
    font-size: 10px;
    transition: transform 0.3s ease;
}

.dropdown:hover .dropdown-toggle:after {
    transform: rotate(180deg);
}

/* Footer Styles */

.main-footer {
    background-color: #1a1a1a;

    color: #fff;

    padding-top: 60px;
}

.footer-top {
    padding-bottom: 40px;
}

.footer-logo img {
    max-height: 80px;

    width: auto;
}

.footer-description {
    color: #b3b3b3;

    font-size: 14px;

    line-height: 1.6;

    margin: 15px 0;
}

.footer-title {
    color: #fff;

    font-size: 18px;

    font-weight: 600;

    margin-bottom: 20px;

    position: relative;

    padding-bottom: 10px;
}

.footer-title:after {
    content: "";

    position: absolute;

    left: 0;

    bottom: 0;

    width: 50px;

    height: 2px;

    background-color: #e31b23; /* Kulübün ana rengi */
}

.footer-links {
    list-style: none;

    padding: 0;

    margin: 0;
}

.footer-links li {
    margin-bottom: 10px;
}

.footer-links a {
    color: #b3b3b3;

    text-decoration: none;

    transition: color 0.3s ease;

    font-size: 14px;
}

.footer-links a:hover {
    color: #fff;
}

.social-links {
    display: flex;

    gap: 10px;
}

.social-links a {
    text-decoration: none;
}

.social-link {
    display: inline-flex;

    align-items: center;

    justify-content: center;

    width: 36px;

    height: 36px;

    background-color: rgba(255, 255, 255, 0.1);

    color: #fff;

    border-radius: 50%;

    transition: all 0.3s ease;
}

.social-link:hover {
    background-color: #e31b23;

    color: #fff;

    transform: translateY(-3px);
}

.footer-contact p {
    color: #b3b3b3;

    font-size: 14px;

    margin-bottom: 10px;

    display: flex;

    align-items: start;
}

.footer-contact p i {
    margin-right: 10px;

    color: #e31b23;

    margin-top: 5px;
}

.footer-bottom {
    background-color: #111;

    padding: 20px 0;

    font-size: 14px;
}

.copyright {
    color: #b3b3b3;
}

.footer-bottom-links {
    display: flex;

    gap: 20px;

    justify-content: flex-end;
}

.footer-bottom-links a {
    color: #b3b3b3;

    text-decoration: none;

    transition: color 0.3s ease;
}

.footer-bottom-links a:hover {
    color: #fff;
}

@media (max-width: 768px) {
    .footer-bottom-links {
        justify-content: center;

        margin-top: 10px;
    }

    .copyright {
        text-align: center;
    }
}

/* index.php */

/* Hero Slider */

.hero-slider {
    position: absolute;
    top:0;
    width: 100%;
    height: 100vh;
    overflow: hidden;
}

.hero-slide {
    position: relative;
    width: 100%;
    height: 100vh;
    background-size: cover;
    background-position: center;
}

/* Koyu overlay ekleyelim */

.hero-slide::before {
    content: "";
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100vh;
    background: rgba( 0, 0, 0,  0.4); /* Siyah overlay - opaklığı ayarlayabilirsiniz */
    background: linear-gradient(to top bottom, rgba(0, 0, 0, 1) 0%, rgba(0, 0, 0, 0) 70%);
}

.slide-content {
    position: relative; /* z-index çalışması için */
    z-index: 2; /* Overlay'in üzerinde görünmesi için */
    text-align: center;
    color: #fff;
    padding: 2rem;
    max-width: 800px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-end;
    height: 100vh;
}

.slide-content h2 {
    font-size: 3.5rem;

    font-weight: 700;

    margin-bottom: 1rem;

    text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.7);
}

.slide-content p {
    font-size: 1.2rem;

    text-shadow: 5px 5px 10px rgba(0, 0, 0, 0.7);
}

/* Responsive düzenlemeler */

@media (max-width: 768px) {
    .hero-slider {
        height: 100vh;
    }

    .slide-content h2 {
        font-size: 2rem;
    }

    .slide-content p {
        font-size: 1rem;
    }
}

@media (max-width: 480px) {
    .hero-slider {
        height: 100vh;
    }

    .slide-content h2 {
        font-size: 1.5rem;
    }
}

/* Son Maç Sonucu */

.last-match {
    background: #f8f9fa;

    padding: 2rem 0;
}

.match-cards {
    display: grid;

    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));

    gap: 1rem;
}

.match-card {
    background: #fff;
    padding: 1rem;
}

.match-header {
    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 1rem;

    font-size: 0.9rem;

    color: #666;
}

.match-content {
    display: flex;

    align-items: center;

    justify-content: space-between;

    gap: 1rem;
}

.team {
    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 0.5rem;

    flex: 1;
}

.team-logo {
    width: 60px;

    height: 60px;

    display: flex;

    align-items: center;

    justify-content: center;
}

.team-logo img,
.team-logo svg {
    max-width: 100%;

    max-height: 100%;

    object-fit: contain;
}

.team h3 {
    font-size: 0.9rem;

    text-align: center;

    margin: 0;

    font-weight: 600;
}

.score {
    display: flex;

    flex-direction: column;

    align-items: center;

    gap: 0.5rem;
}

.score-number {
    font-size: 1.5rem;

    font-weight: bold;

    color: #333;
}

.match-status {
    font-size: 0.8rem;

    color: #666;
}

.match-footer {
    margin-top: 1rem;

    text-align: center;

    font-size: 0.8rem;

    color: #666;
}

/* Ana İçerik Grid */

.home-grid {
    padding: 3rem 0;
}

.home-section {
    margin-bottom: 3rem;
}

.section-header {
    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 1.5rem;
}

.btn-more {
    color: #dc3545;

    text-decoration: none;

    font-weight: 500;
}

/* Puan Durumu */

.standings-widget {
    background: #fff;

    border-radius: 4px;

    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.05);

    margin-bottom: 2rem;

    margin-top: -1rem;

    overflow-x: auto;

    scrollbar-width: thin;

    scrollbar-color: #dc3545 #f8f9fa;

}

.standings-widget::-webkit-scrollbar {
    height: 6px;
}

.standings-widget::-webkit-scrollbar-track {
    background: #f8f9fa;

    border-radius: 3px;
}

.standings-widget::-webkit-scrollbar-thumb {
    background-color: #dc3545;

    border-radius: 3px;
}

.standings-widget h2 {
    font-size: 1.5rem;

    margin: 0;

    color: #000;

    display: flex;

    align-items: center;

    gap: 0.5rem;

    font-weight: 700;

    padding-left: 1.8rem;

    padding-bottom: 1rem;

    padding-top: 1rem;
}

.standings-table {
    min-width: 100%;
}

.standings-table table {
    width: 100%;

    min-width: 500px;

    border-collapse: collapse;
}

.standings-table th,
.standings-table td {
    padding: 0.5rem;

    text-align: center;

    min-width: 40px;
}

.standings-table th:first-child,
.standings-table td:first-child {
    min-width: 30px;

    padding-left: 1rem;
}

.standings-table th:last-child,
.standings-table td:last-child {
    min-width: 40px;

    padding-right: 1rem;

    font-weight: 700;
}

.standings-table tr.highlight {
    background: #fff8f8;

    font-weight: 700;

    color: #dc3545;
}

.standings-table tr:not(:first-child):hover {
    background-color: #f8f9fa;

    transition: background-color 0.2s ease;
}

/* Gelecek Maçlar */

.upcoming-matches {
    background: #fff;

    border-radius: 12px;

    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.1);

    padding: 1.5rem;
}

.upcoming-matches h3 {
    margin-bottom: 1rem;

    padding-bottom: 0.5rem;

    border-bottom: 2px solid #dc3545;
}

.match-item {
    padding: 1rem;

    border-bottom: 1px solid #eee;
}

.match-item:last-child {
    border-bottom: none;
}

.match-date {
    font-size: 0.9rem;

    color: #6c757d;

    margin-bottom: 0.5rem;
}

.match-teams {
    display: flex;

    justify-content: space-between;

    align-items: center;

    margin: 0.5rem 0;

    gap: 1rem;
}

.vs {
    color: #dc3545;

    font-weight: 700;

    flex-shrink: 0;
}

.match-venue {
    font-size: 0.9rem;

    color: #6c757d;

    text-align: right;
}

/* Mobil Uyumluluk */

@media (max-width: 768px) {
    .hero-slider {
        height: 100vh;
    }

    .slide-content h2 {
        font-size: 2rem;
    }

    .match-content {
        flex-direction: column;

        gap: 1rem;
    }

    .score {
        padding: 1rem 0;
    }

    .team img {
        width: 60px;

        height: 60px;
    }
}

/* Haberler Bölümü */

.news-section,
.announcements-section {
    margin-bottom: 3rem;
}

.news-section
{
    border-radius: 10px;
}

.section-header {
    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 1.5rem;

    padding-bottom: 0.5rem;
}

.section-header h2 {
    font-size: 1.5rem;

    margin: 0;

    color: #000000;

    display: flex;

    align-items: center;

    gap: 0.5rem;

    font-weight: 700;
}

.view-all {
    color: #000;

    text-decoration: none;

    font-weight: 500;

    display: flex;

    align-items: center;

    gap: 0.5rem;

    transition: all 0.3s ease;
}

.view-all:hover {
    color: #c82333;

    transform: translateX(-5px);
}

/* Haber Kartları */

.news-wrapper {
    display: grid;

    grid-template-columns: repeat(2, 1fr);

    gap: 1.5rem;
}

.news-card {
    background: #fff;

    border-radius: 4px;

    overflow: hidden;

    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.08);

    transition: transform 0.3s ease;
}

.news-card:hover {
    transform: translateY(-5px);
}

.card-image {
    position: relative;

    padding-top: 60%;
}

.card-image img {
    position: absolute;

    top: 0;

    left: 0;

    width: 100%;

    height: 100%;

    object-fit: cover;
}

.image-overlay {
    position: absolute;

    inset: 0;

    background: linear-gradient(
        to bottom,
        transparent 0%,
        rgba(0, 0, 0, 0.7) 100%
    );

    opacity: 0;

    transition: opacity 0.3s ease;
}

.news-card:hover .image-overlay {
    opacity: 1;
}

.news-date {
    position: absolute;

    bottom: 1rem;

    left: 1rem;

    color: #fff;

    font-size: 0.9rem;

    z-index: 1;

    display: flex;

    align-items: center;

    gap: 0.5rem;
}

.card-content {
    padding: 1.5rem;
}

.news-title {
    font-size: 1.2rem;

    margin-bottom: 1rem;
}

.news-title a {
    color: #000000;
    font-weight: 700;

    text-decoration: none;
}

.news-excerpt {
    color: #666;

    margin-bottom: 1rem;

    line-height: 1.6;
}

.read-more {
    color: #dc3545;

    text-decoration: none;

    font-weight: 500;

    display: inline-flex;

    align-items: center;

    gap: 0.5rem;

    transition: all 0.3s ease;
}

.read-more:hover {
    color: #c82333;

    transform: translateX(5px);
}

/* Duyuru Kartları */

.announcements-wrapper {
    display: flex;

    flex-direction: column;

    gap: 1rem;
}

.announcement-card {
    background: #fff;

    border-radius: 4px;

    padding: 1.5rem;

    box-shadow: 0 3px 15px rgba(0, 0, 0, 0.04);

    transition: transform 0.3s ease;

    position: relative;
}

.announcement-card:hover {
    transform: translateX(5px);
}

.announcement-meta {
    display: flex;

    justify-content: space-between;

    align-items: center;

    margin-bottom: 1rem;
}

.announcement-date {
    color: #666;

    font-size: 0.9rem;

    display: flex;

    align-items: center;

    gap: 0.5rem;
}

.importance-badge {
    background: #dc3545;

    color: #fff;

    padding: 0.25rem 0.75rem;

    border-radius: 20px;

    font-size: 0.8rem;

    font-weight: 500;
}

.announcement-title {
    font-size: 1.2rem;

    margin-bottom: 1rem;
}

.announcement-title a {
    color: #000000;

    text-decoration: none;
    font-weight: 700;
}

.announcement-excerpt {
    color: #666;

    margin-bottom: 1rem;

    line-height: 1.6;
}

/* Mobil Uyumluluk */

@media (max-width: 768px) {
    .news-wrapper {
        grid-template-columns: 1fr;
    }

    .section-header h2 {
        font-size: 1.3rem;
    }

    .card-content {
        padding: 1rem;
    }

    .news-title,
    .announcement-title {
        font-size: 1.1rem;
    }
}

/* Puan durumu için ek stiller */

.team-cell {
    display: flex;

    align-items: center;

    gap: 0.5rem;

    text-align: left;

    padding: 0.5rem !important;

    min-width: 110px;

    max-width: 110px;
}

.team-logo-wrapper {
    width: 24px;

    height: 24px;

    flex-shrink: 0;

    display: flex;

    align-items: center;

    justify-content: center;
}

.team-logo {
    max-width: 100%;

    max-height: 100%;

    object-fit: contain;
}

.svg-logo {
    width: 100%;

    height: 100%;
}

.svg-logo svg {
    width: 100%;

    height: 100%;
}

.team-name {
    font-size: 0.8rem;

    white-space: nowrap;

    overflow: hidden;

    text-overflow: ellipsis;

    flex: 1;

    display: inline-block;

    max-width: 70px;

    padding-right: 5px;

    text-align: left;
}

.team-name-short {
    display: none;
}

@media (max-width: 992px) {
    .team-name-full {
        display: none;
    }

    .team-name-short {
        display: inline-block;
    }
}

.standings-table th.text-left {
    text-align: left;
}

/* Loading spinner */

.spinner-border {
    width: 1.5rem;

    height: 1.5rem;

    border-width: 0.2rem;
}

/* Mobil görünüm için ek stiller */

@media (max-width: 768px) {
    .standings-widget {
        margin: 0;

        padding: 0.5rem;

        border-radius: 0;
    }

    .standings-table table {
        min-width: 100%;
    }

    .team-cell {
        min-width: 110px;

        max-width: 110px;
    }

    .team-name {
        font-size: 0.75rem;

        max-width: 70px;
    }

    .standings-table td,
    .standings-table th {
        padding: 0.4rem 0.2rem;

        font-size: 0.75rem;
    }
}

/* Puan durumu tablosu için responsive düzenlemeler */

.standings-table {
    width: 100%;

    overflow-x: auto;
}

.standings-table table {
    width: 100%;

    min-width: auto;
}

.standings-table td,
.standings-table th {
    padding: 0.5rem 0.3rem;

    font-size: 0.85rem;
}

/* Gelecek Maçlar Widget Stili */

.upcoming-matches-widget {
    background: #fff;

    border-radius: 8px;

    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.04);

    margin-bottom: 2rem;
}

.upcoming-matches-widget h3 {
    font-size: 1rem;

    padding: 1rem;

    margin: 0;

    border-bottom: 1px solid #eee;

    color: #2c3e50;

    font-weight: 600;
}

.match-item {
    padding: 1rem;

    border-bottom: 1px solid #eee;

    transition: background-color 0.2s;
}

.match-item:last-child {
    border-bottom: none;
}

.match-item:hover {
    background-color: #f8f9fa;
}

.match-date {
    display: flex;

    align-items: center;

    gap: 0.5rem;

    margin-bottom: 0.8rem;

    color: #666;

    font-size: 0.85rem;
}

.match-date .date {
    display: flex;

    align-items: center;
}

.match-date .date:before {
    content: "\f133";

    font-family: "Font Awesome 5 Free";

    margin-right: 0.4rem;

    color: #999;
}

.match-date .time:before {
    content: "\f017";

    font-family: "Font Awesome 5 Free";

    margin-right: 0.4rem;

    color: #999;
}

.match-teams {
    display: grid;

    grid-template-columns: 1fr auto 1fr;

    align-items: center;

    gap: 1rem;

    margin-bottom: 0.8rem;
}

.team {
    display: flex;

    align-items: center;

    gap: 0.8rem;
}

.team.home-team {
    justify-content: flex-end;
}

.team img {
    width: 32px;

    height: 32px;

    object-fit: contain;
}

.team span {
    font-size: 0.9rem;

    color: #2c3e50;

    font-weight: 500;
}

.vs {
    background: #f8f9fa;

    padding: 0.3rem 0.8rem;

    border-radius: 4px;

    font-size: 0.8rem;

    color: #666;

    font-weight: 600;
}

.match-info {
    display: flex;

    align-items: center;

    justify-content: center;

    font-size: 0.8rem;

    color: #666;
}

.match-info i {
    color: #999;

    margin-right: 0.4rem;
}

.our-team span {
    color: #dc3545;
}

.no-matches {
    padding: 2rem 1rem;

    text-align: center;

    color: #666;

    font-size: 0.9rem;
}

@media (max-width: 768px) {
    .upcoming-matches-widget {
        margin: 0 0 1rem 0;

        border-radius: 0;
    }

    .match-teams {
        gap: 0.5rem;
    }

    .team {
        gap: 0.5rem;
    }

    .team img {
        width: 28px;

        height: 28px;
    }

    .team span {
        font-size: 0.8rem;
    }
}
    
.page-hero h1 {
    font-size: 2.5rem;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 2px;
    text-align: center;
    position: relative;
    padding-bottom: 1rem;
}

.page-hero h1:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 50%;
    transform: translateX(-50%);
    width: 80px;
    height: 3px;
    background: #dc3545;
}

/* Mobil Uyumluluk */
@media (max-width: 768px) {
    .page-hero {
        padding: 60px 0;
    }

    .page-hero h1 {
        font-size: 2rem;
    }
}

.btn-read-more,
.btn-source {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    padding: 0.7rem 1.2rem;
    border-radius: 8px;
    font-size: 0.9rem;
    font-weight: 500;
    transition: all 0.3s ease;
}

.btn-read-more {
    background: #dc3545;
    color: #fff;
    transform: translateX(5px);
    border: 2px solid #dc3545;
}

.btn-read-more:hover {
    background: #c82333;
    transform: translateX(10px);
    color: #fff;
}

.btn-source {
    border: 2px solid #dc3545;
    color: #dc3545;
}

.btn-source:hover {
    background: #dc3545;
    color: #fff;
}

.other-news {
    background: #fff;
    border-radius: 4px;
    padding: 2rem;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
}

.other-news-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    margin-bottom: 1.5rem;
}

.news-line {
    flex-grow: 1;
    height: 2px;
    background: linear-gradient(to right, #dc3545, transparent);
}

.other-news h3 {
    font-size: 1.5rem;
    color: #2d3436;
    margin: 0;
    white-space: nowrap;
}

.other-news-grid {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.other-news-card {
    display: flex;
    gap: 1.2rem;
    color: inherit;
    transition: all 0.3s ease;
    padding: 0.8rem;
    border-radius: 15px;
    position: relative;
    overflow: hidden;
}

.other-news-card:hover {
    background: #f8f9fa;
    transform: translateY(-2px);
}

.other-news-card:hover .card-image img {
    transform: scale(1.05);
}

.other-news-card:hover .image-overlay {
    opacity: 0;
}

@media (max-width: 768px) {


    .other-news {
        padding: 1.5rem;
    }

}

.product-card {
    max-width: 350px;
    background: #fff;
    border-radius: 4px;
    overflow: hidden;
    box-shadow: 0 10px 30px rgba(0,0,0,0.04);
    transition: all 0.3s ease;
    animation: fadeInUp 0.6s ease-out forwards;
    display: flex;
    flex-direction: column;
}

.product-card:hover {
    box-shadow: 0 15px 40px rgba(0,0,0,0.08);
}

.product-image {
    max-width: 350px;
    height: 350px;
    overflow: hidden;
    position: relative;
}

.product-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    transition: transform 0.5s ease;
}

.product-card:hover .product-image img {
    transform: scale(1.1);
}

.product-image:after {
    content: '';
    position: absolute;
    bottom: 0;
    left: 0;
    right: 0;
    width: 50%;
    background: linear-gradient(to top, rgba(0,0,0,0.5), transparent);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.product-card:hover .facility-image:after {
    opacity: 1;
}

.product-content {
    padding: 1.5rem;
    display: flex;
    flex-direction: column;
    flex: 1;
}

.product-content h3 {
    font-size: 17px;
    margin-bottom: 1rem;
    color: #000000;
    transition: color 0.3s ease;
    line-height: 1.33;
    font-weight: 400;
    color: #000;
}

.product-content a
{
    text-decoration: none;
}

.product-card:hover .facility-content h3 {
    color: #dc3545;
}