/* Kato Communication - Custom CSS */

/* Hover card effect */
.hover-card {
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}
.hover-card:hover {
    transform: translateY(-4px);
    box-shadow: 0 8px 24px rgba(0,0,0,.12) !important;
}

/* Hover image effect */
.hover-img {
    transition: transform 0.3s ease;
}
.hover-img:hover {
    transform: scale(1.05);
    overflow: hidden;
}

/* Hero section */
.hero-section {
    background-attachment: fixed;
    position: relative;
    overflow: hidden;
}

/* Article content */
.article-content img {
    max-width: 100%;
    height: auto;
    border-radius: 0.5rem;
}
.article-content p {
    line-height: 1.8;
    margin-bottom: 1.25rem;
}
.article-content h2, .article-content h3 {
    margin-top: 2rem;
    margin-bottom: 1rem;
}

/* Page content */
.page-content img {
    max-width: 100%;
    height: auto;
}
.page-content p {
    line-height: 1.8;
}

/* Navbar active link */
.navbar .nav-link.active {
    color: #ffc107 !important;
    font-weight: 600;
}

/* Footer */
footer a:hover {
    color: #ffc107 !important;
}

/* Pagination */
.pagination .page-item.active .page-link {
    background-color: #212529;
    border-color: #212529;
}
.pagination .page-link {
    color: #212529;
}
.pagination .page-link:hover {
    color: #ffc107;
}

/* Team member cards */
.team-card .platform-badge {
    font-size: 0.85rem;
}
.team-card .team-avatar-wrapper {
    width: 120px;
    height: 120px;
    min-width: 120px;
    min-height: 120px;
    overflow: hidden;
}
.team-card .avatar-placeholder {
    width: 120px;
    height: 120px;
    min-width: 120px;
    min-height: 120px;
}
.team-card .team-card-avatar {
    width: 120px;
    height: 120px;
    min-width: 120px;
    min-height: 120px;
    object-fit: cover;
}
