/* Travel Blog Stylesheet */
/* Colors: #f000dc (pink), #fbcf56 (yellow), #faffb3 (light yellow) */

:root {
    --primary-color: #f000dc;
    --secondary-color: #fbcf56;
    --accent-color: #faffb3;
    --text-color: #333;
    --bg-color: #fff;
    --border-color: #e0e0e0;
    --shadow: 0 2px 10px rgba(0,0,0,0.1);
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: var(--bg-color);
}

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

/* Header */
.main-header {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 1rem 0;
    box-shadow: var(--shadow);
    position: sticky;
    top: 0;
    z-index: 1000;
}

.header-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo a {
    color: white;
    text-decoration: none;
    display: flex;
    align-items: center;
    gap: 0.75rem;
}

.logo-img {
    height: 48px;
    width: 48px;
    display: block;
    object-fit: contain;
    border-radius: 50%;
    /*  background: white; */
}

.logo h1 {
    font-size: 1.8rem;
    font-weight: bold;
}

.main-menu ul {
    display: flex;
    list-style: none;
    gap: 2rem;
    align-items: center;
}

.main-menu > ul > li {
    position: relative;
}

.main-menu a {
    color: white;
    text-decoration: none;
    font-weight: 500;
    transition: opacity 0.3s;
}

.main-menu a:hover {
    opacity: 0.8;
}

/* Dropdown menu for category overview */
.menu-dropdown {
    position: relative;
}

.menu-dropdown > a::after {
    content: ' ▼';
    font-size: 0.7em;
}

.menu-dropdown-content {
    display: none;
    position: absolute;
    top: 100%;
    left: 0;
    background: white;
    min-width: 200px;
    box-shadow: var(--shadow);
    border-radius: 5px;
    padding: 0.5rem 0;
    z-index: 1000;
    /* Invisible bridge so hover doesn't break when moving mouse from link to dropdown */
}
.menu-dropdown-content::before {
    content: '';
    position: absolute;
    top: -8px;
    left: 0;
    right: 0;
    height: 8px;
}

.menu-dropdown:hover .menu-dropdown-content {
    display: block;
}

.menu-dropdown-content a {
    display: block;
    padding: 0.7rem 1.5rem;
    color: var(--text-color);
    text-decoration: none;
    transition: background 0.3s;
}

.menu-dropdown-content a:hover {
    background: var(--accent-color);
    color: var(--text-color);
}

.menu-toggle {
    display: none;
    flex-direction: column;
    background: none;
    border: none;
    cursor: pointer;
    gap: 4px;
}

.menu-toggle span {
    width: 25px;
    height: 3px;
    background: white;
    transition: 0.3s;
}

/* Main Content */
.main-content {
    min-height: calc(100vh - 200px);
    padding: 2rem 0;
}

.content-wrapper {
    display: grid;
    grid-template-columns: 1fr 300px;
    gap: 2rem;
}

.content-area {
    flex: 1;
}

/* Hero Section */
.hero-section {
    background: linear-gradient(135deg, var(--primary-color), var(--secondary-color));
    color: white;
    padding: 4rem 2rem;
    text-align: center;
    border-radius: 10px;
    margin-bottom: 3rem;
}

.hero-content h2 {
    font-size: 2.5rem;
    margin-bottom: 1rem;
}

.hero-content p {
    font-size: 1.2rem;
    opacity: 0.9;
}

/* Highlighted Article (most clicks) */
.highlighted-article {
    margin-bottom: 3rem;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.highlighted-article-link {
    display: block;
    text-decoration: none;
    color: inherit;
}

.highlighted-article-image {
    width: 100%;
    overflow: hidden;
}

.highlighted-article-image img {
    width: 100%;
    height: auto;
    display: block;
    object-fit: cover;
    max-height: 400px;
}

.highlighted-article-content {
    padding: 1.5rem;
}

.highlighted-article-title {
    font-size: 1.75rem;
    color: var(--primary-color);
    margin-bottom: 0.75rem;
    line-height: 1.3;
}

.highlighted-article-intro {
    font-size: 1rem;
    color: #666;
    line-height: 1.6;
}

/* Categories Grid */
.main-categories {
    margin-bottom: 3rem;
}

.main-categories h2,
.latest-posts h2,
.popular-posts h2,
.tags-section h2 {
    font-size: 2rem;
    margin-bottom: 1.5rem;
    color: var(--primary-color);
}

.categories-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
}

.category-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

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

.category-card a {
    text-decoration: none;
    color: inherit;
    display: block;
}

.category-card img {
    width: 100%;
    height: 200px;
    object-fit: cover;
}

.category-card h3 {
    padding: 1rem;
    color: var(--primary-color);
}

.category-card p {
    padding: 0 1rem 1rem;
    color: #666;
}

.category-count {
    display: inline-block;
    background: var(--accent-color);
    color: var(--text-color);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    font-size: 0.9rem;
    margin-top: 0.5rem;
    margin-left: 1rem;
    margin-bottom: 1rem;
}

/* Posts Grid */
.posts-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2rem;
    margin-bottom: 3rem;
}

.post-card {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

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

.post-card a {
    text-decoration: none;
    color: inherit;
}

.post-image {
    width: 100%;
    height: 200px;
    overflow: hidden;
}

.post-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-content {
    padding: 1.5rem;
}

.post-category {
    display: inline-block;
    background: var(--accent-color);
    color: var(--text-color);
    padding: 0.3rem 0.8rem;
    border-radius: 20px;
    font-size: 0.85rem;
    margin-bottom: 0.5rem;
}

.post-category a {
    color: var(--text-color);
    text-decoration: none;
}

.post-category a:hover {
    color: var(--text-color);
    text-decoration: none;
    opacity: 0.8;
}

.post-content h3 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
    font-size: 1.3rem;
}

.post-excerpt {
    color: #666;
    margin-bottom: 0.5rem;
}

.post-date {
    color: #999;
    font-size: 0.9rem;
}

/* Popular Posts */
.popular-posts-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.popular-post-item {
    display: flex;
    gap: 1rem;
    background: white;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: var(--shadow);
}

.popular-post-item a {
    display: flex;
    gap: 1rem;
    text-decoration: none;
    color: inherit;
}

.popular-thumb {
    width: 100px;
    height: 100px;
    object-fit: cover;
    border-radius: 5px;
}

.popular-content h4 {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.post-meta {
    color: #999;
    font-size: 0.9rem;
}

/* Tags */
.tags-cloud {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.tag-link {
    display: inline-block;
    background: var(--accent-color);
    color: var(--text-color);
    padding: 0.4rem 0.8rem;
    border-radius: 20px;
    text-decoration: none;
    font-size: 0.9rem;
    transition: background 0.3s;
}

.tag-link:hover {
    background: var(--secondary-color);
}

/* Sidebar */
.sidebar {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.sidebar a {
    text-decoration: none;
    color: inherit;
}

.sidebar a:hover {
    text-decoration: none;
}

.widget {
    background: white;
    padding: 1.5rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.widget h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
    font-size: 1.3rem;
}

.widget ul {
    list-style: none;
}

.widget li {
    margin-bottom: 1rem;
    padding-bottom: 1rem;
    border-bottom: 1px solid var(--border-color);
}

.widget li:last-child {
    border-bottom: none;
    margin-bottom: 0;
    padding-bottom: 0;
}

.widget-thumbnail {
    width: 60px;
    height: 60px;
    object-fit: cover;
    border-radius: 5px;
    float: left;
    margin-right: 1rem;
}

.widget-title {
    display: block;
    color: var(--text-color);
    font-weight: 500;
}

.widget a {
    text-decoration: none;
    color: inherit;
}

.widget a:hover {
    text-decoration: none;
}

/* Advertising Widgets */
.ad-widget {
    position: relative;
    text-align: center;
}

.ad-ribbon {
    position: absolute;
    top: -10px;
    right: -10px;
    background: var(--primary-color);
    color: white;
    padding: 0.3rem 0.8rem;
    border-radius: 5px;
    font-size: 0.8rem;
    font-weight: bold;
    z-index: 10;
}

.ad-image {
    width: 100%;
    max-width: 100%;
    height: auto;
    border-radius: 5px;
    margin-bottom: 1rem;
}

.ad-title {
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.ad-text {
    color: #666;
    margin-bottom: 1rem;
}

.ad-button {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.8rem 1.5rem;
    border-radius: 5px;
}

/* Structured ad: logo + text + ribbon + button */
.ad-promo {
    position: relative;
    text-align: center;
    padding: 1.25rem;
    background: #fafafa;
    border-radius: 8px;
    border: 1px solid var(--border-color);
}

.ad-promo-ribbon {
    position: absolute;
    top: -1px;
    right: 1rem;
    background: var(--secondary-color);
    color: #333;
    padding: 0.35rem 0.75rem;
    border-radius: 0 0 6px 6px;
    font-size: 0.75rem;
    font-weight: bold;
    text-transform: uppercase;
    letter-spacing: 0.05em;
    box-shadow: 0 2px 4px rgba(0,0,0,0.15);
}

.ad-promo-logo {
    display: block;
    max-width: 140px;
    max-height: 48px;
    margin: 0 auto 1rem;
    object-fit: contain;
}

.ad-promo-text {
    font-size: 0.95rem;
    color: var(--text-color);
    line-height: 1.5;
    margin-bottom: 1rem;
}

.ad-promo-btn {
    display: inline-block;
    background: var(--primary-color);
    color: white;
    padding: 0.6rem 1.25rem;
    border-radius: 6px;
    text-decoration: none;
    font-weight: 600;
    font-size: 0.9rem;
    transition: background 0.2s;
}

.ad-promo-btn:hover {
    background: var(--secondary-color);
    color: #333;
    text-decoration: none;
}

.ad-button:hover {
    background: var(--secondary-color);
}

.ad-widget-below-post {
    margin-top: 2.5rem;
}

.ad-widget-in-article {
    margin: 2.5rem 0;
}

/* Page intro (team, companies) */
.page-intro {
    color: #666;
    margin-bottom: 2rem;
}

/* Team page */
.team-grid {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.team-card {
    display: flex;
    flex-direction: row;
    align-items: flex-start;
    width: 100%;
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
}

.team-card-image {
    flex: 0 0 25%;
    width: 25%;
    position: relative;
    height: 0;
    padding-bottom: 25%; /* square (height = 25% card width), border-radius makes circle */
    border-radius: 50%;
    overflow: hidden;
    margin: 1.25rem;
    background: var(--accent-color);
}

.team-card-image img {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.team-card-placeholder {
    position: absolute;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 2.5rem;
    font-weight: bold;
    color: var(--primary-color);
}

.team-card-content {
    flex: 1;
    min-width: 0;
    padding: 1.25rem 1.25rem 1.25rem 0;
}

.team-card-name {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin-bottom: 0.25rem;
}

.team-card-role {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.75rem;
}

.team-card-description {
    font-size: 0.95rem;
    line-height: 1.5;
    color: var(--text-color);
    margin-bottom: 0.75rem;
}

.team-card-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.team-tag {
    display: inline-block;
    background: var(--accent-color);
    color: var(--text-color);
    padding: 0.3rem 0.6rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

/* Companies page */
.companies-list {
    display: flex;
    flex-direction: column;
    gap: 1rem;
}

.company-widget {
    background: white;
    border-radius: 10px;
    box-shadow: var(--shadow);
    overflow: hidden;
    border: 1px solid var(--border-color);
}

.company-widget-header {
    display: flex;
    align-items: center;
    gap: 1rem;
    padding: 1.25rem;
    flex-wrap: wrap;
}

.company-widget-logo {
    flex-shrink: 0;
}

.company-widget-logo img {
    max-width: 120px;
    max-height: 48px;
    object-fit: contain;
}

.company-widget-title-wrap {
    flex: 1;
    min-width: 0;
}

.company-widget-name {
    font-size: 1.25rem;
    color: var(--primary-color);
    margin: 0 0 0.5rem 0;
}

.company-widget-toggle {
    display: inline-flex;
    align-items: center;
    gap: 0.5rem;
    background: var(--primary-color);
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 6px;
    font-size: 0.9rem;
    cursor: pointer;
    transition: background 0.2s;
}

.company-widget-toggle:hover {
    background: var(--secondary-color);
    color: #333;
}

.company-widget-toggle .toggle-icon {
    font-size: 0.7rem;
}

.company-widget-details {
    padding: 0 1.25rem 1.25rem;
    border-top: 1px solid var(--border-color);
}

.company-widget-details[hidden] {
    display: none;
}

.company-detail-block {
    padding-top: 1rem;
}

.company-detail-block h3 {
    font-size: 1rem;
    color: var(--primary-color);
    margin-bottom: 0.5rem;
}

.company-detail-block p {
    margin: 0 0 0.5rem 0;
    line-height: 1.5;
}

.company-tags {
    display: flex;
    flex-wrap: wrap;
    gap: 0.4rem;
}

.company-tag {
    display: inline-block;
    background: var(--accent-color);
    color: var(--text-color);
    padding: 0.3rem 0.6rem;
    border-radius: 20px;
    font-size: 0.8rem;
}

.company-website-btn {
    display: inline-block;
    margin-top: 0.5rem;
    padding: 0.5rem 1rem;
    background: var(--primary-color);
    color: white;
    text-decoration: none;
    border-radius: 6px;
    font-size: 0.9rem;
    transition: background 0.2s;
}

.company-website-btn:hover {
    background: var(--secondary-color);
    color: #333;
    text-decoration: none;
}

.company-custom-fields p {
    margin-bottom: 0.25rem;
}

/* Category Page */
.category-header {
    margin-bottom: 2rem;
}

.category-image {
    width: 100%;
    max-width: 1024px;
    height: 400px;
    object-fit: cover;
    border-radius: 10px;
    margin-bottom: 1rem;
}

.category-description {
    background: var(--accent-color);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
    line-height: 1.8;
}

.category-tags {
    margin-bottom: 2rem;
    padding: 1rem;
    background: #f9f9f9;
    border-radius: 10px;
}

.category-tags h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.tags-list {
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

/* Posts List */
.posts-list {
    display: flex;
    flex-direction: column;
    gap: 2rem;
}

.post-item {
    background: white;
    border-radius: 10px;
    overflow: hidden;
    box-shadow: var(--shadow);
    transition: transform 0.3s;
}

.post-item:hover {
    transform: translateY(-3px);
}

.post-item a {
    display: flex;
    gap: 1.5rem;
    text-decoration: none;
    color: inherit;
}

.post-item-image {
    flex-shrink: 0;
    width: 300px;
    height: 200px;
}

.post-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.post-item-content {
    padding: 1.5rem;
    flex: 1;
}

.post-item-content h2 {
    color: var(--primary-color);
    margin: 0.5rem 0;
}

/* Pagination */
.pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    gap: 0.5rem;
    margin-top: 3rem;
    flex-wrap: wrap;
}

.pagination-link {
    padding: 0.5rem 1rem;
    background: white;
    border: 2px solid var(--primary-color);
    color: var(--primary-color);
    text-decoration: none;
    border-radius: 5px;
    transition: all 0.3s;
}

.pagination-link:hover,
.pagination-link.active {
    background: var(--primary-color);
    color: white;
}

.pagination-ellipsis {
    padding: 0.5rem;
}

/* Single Post */
.single-post {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.post-header {
    margin-bottom: 2rem;
}

.post-header h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin: 1rem 0;
}

.post-meta {
    color: #999;
    font-size: 0.9rem;
    display: flex;
    gap: 1rem;
}

.post-feature-image {
    margin-bottom: 2rem;
    border-radius: 10px;
    overflow: hidden;
}

.post-feature-image img {
    width: 100%;
    display: block;
}

.post-content {
    line-height: 1.8;
    font-size: 1.1rem;
    margin-bottom: 2rem;
}

.post-content p {
    margin-bottom: 1rem;
}

.post-content img {
    max-width: 100%;
    height: auto;
    border-radius: 5px;
}

.post-tags,
.post-categories {
    margin-top: 2rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
}

.post-tags h3,
.post-categories h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.post-categories ul {
    list-style: none;
}

.post-categories li {
    margin-bottom: 0.5rem;
}

.post-categories a {
    color: var(--primary-color);
    text-decoration: none;
}

.post-categories a:hover {
    text-decoration: underline;
}

/* Post Navigation */
.post-navigation {
    display: flex;
    justify-content: space-between;
    margin-top: 3rem;
    padding-top: 2rem;
    border-top: 2px solid var(--border-color);
    gap: 1rem;
}

.nav-link {
    flex: 1;
    padding: 1rem;
    background: var(--accent-color);
    border-radius: 8px;
    text-decoration: none;
    color: var(--text-color);
    transition: background 0.3s;
}

.nav-link:hover {
    background: var(--secondary-color);
}

.nav-label {
    display: block;
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.nav-title {
    display: block;
    font-weight: bold;
    color: var(--primary-color);
}

.nav-next {
    text-align: right;
}

/* Static Pages */
.static-page {
    background: white;
    padding: 2rem;
    border-radius: 10px;
    box-shadow: var(--shadow);
}

.static-page h1 {
    color: var(--primary-color);
    font-size: 2.5rem;
    margin-bottom: 2rem;
}

.static-content h2 {
    color: var(--primary-color);
    margin-top: 2rem;
    margin-bottom: 1rem;
}

.static-content ul {
    margin-left: 2rem;
    margin-bottom: 1rem;
}

.static-content li {
    margin-bottom: 0.5rem;
}

/* Contact Form */
.contact-content {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 3rem;
}

.contact-details {
    background: var(--accent-color);
    padding: 1.5rem;
    border-radius: 10px;
    margin-top: 1rem;
}

.contact-form,
.advertising-form {
    background: #f9f9f9;
    padding: 2rem;
    border-radius: 10px;
}

.form-group {
    margin-bottom: 1.5rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: 500;
    color: var(--text-color);
}

.form-group input,
.form-group textarea,
.form-group select {
    width: 100%;
    padding: 0.8rem;
    border: 2px solid var(--border-color);
    border-radius: 5px;
    font-family: inherit;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.form-group input:focus,
.form-group textarea:focus,
.form-group select:focus {
    outline: none;
    border-color: var(--primary-color);
}

.submit-button {
    background: var(--primary-color);
    color: white;
    padding: 1rem 2rem;
    border: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background 0.3s;
}

.submit-button:hover {
    background: var(--secondary-color);
}

.advertising-options {
    display: grid;
    gap: 1.5rem;
    margin: 2rem 0;
}

.ad-option {
    background: var(--accent-color);
    padding: 1.5rem;
    border-radius: 10px;
}

.ad-option h3 {
    color: var(--primary-color);
    margin-bottom: 1rem;
}

.ad-option ul {
    margin-left: 2rem;
    margin-top: 0.5rem;
}

/* Alerts */
.alert {
    padding: 1rem 1.5rem;
    border-radius: 5px;
    margin-bottom: 2rem;
    font-weight: 500;
}

.alert-success {
    background: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.alert-error {
    background: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Footer */
.main-footer {
    background: #333;
    color: white;
    padding: 3rem 0 1rem;
    margin-top: 4rem;
}

.footer-content {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 2rem;
    margin-bottom: 2rem;
}

.footer-section h4 {
    margin-bottom: 1rem;
    color: var(--secondary-color);
}

.footer-section ul {
    list-style: none;
}

.footer-section li {
    margin-bottom: 0.5rem;
}

.footer-section a {
    color: #ccc;
    text-decoration: none;
    transition: color 0.3s;
}

.footer-section a:hover {
    color: var(--secondary-color);
}

.footer-bottom {
    text-align: center;
    padding-top: 2rem;
    border-top: 1px solid #555;
    color: #999;
}

/* Responsive Design */
@media (max-width: 968px) {
    .content-wrapper {
        grid-template-columns: 1fr;
    }
    
    .sidebar {
        order: -1;
    }
    
    .contact-content {
        grid-template-columns: 1fr;
    }
    
    .post-item a {
        flex-direction: column;
    }
    
    .post-item-image {
        width: 100%;
    }
}

@media (max-width: 768px) {
    .main-menu {
        display: none;
        position: absolute;
        top: 100%;
        left: 0;
        right: 0;
        background: var(--primary-color);
        padding: 1rem;
    }
    
    .main-menu.active {
        display: block;
    }
    
    .main-menu ul {
        flex-direction: column;
        gap: 1rem;
    }
    
    .menu-toggle {
        display: flex;
    }
    
    .menu-dropdown-content {
        position: static;
        display: block;
        background: rgba(255, 255, 255, 0.1);
        box-shadow: none;
        margin-top: 0.5rem;
        margin-left: 1rem;
    }
    
    .menu-dropdown-content a {
        color: white;
    }
    
    .menu-dropdown-content a:hover {
        background: rgba(255, 255, 255, 0.2);
        color: white;
    }
    
    .hero-content h2 {
        font-size: 1.8rem;
    }
    
    .categories-grid,
    .posts-grid {
        grid-template-columns: 1fr;
    }
    
    .team-card {
        flex-direction: column;
    }
    
    .team-card-image {
        flex: none;
        width: 160px;
        padding-bottom: 0;
        height: 160px;
        margin: 1.25rem auto;
    }
    
    .team-card-content {
        padding: 0 1.25rem 1.25rem;
    }
    
    .post-navigation {
        flex-direction: column;
    }
    
    .nav-next {
        text-align: left;
    }
}
