/* style/cockfighting-forum-new-posts.css */

.page-cockfighting-forum-new-posts {
    font-family: 'Arial', sans-serif;
    color: #333333; /* Dark text for light backgrounds */
    line-height: 1.6;
}

.page-cockfighting-forum-new-posts__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

/* Hero Section */
.page-cockfighting-forum-new-posts__hero {
    background: linear-gradient(135deg, #FFD700, #8B0000);
    color: #FFFFFF; /* Light text for dark/gradient background */
    padding: 80px 0;
    text-align: center;
}

.page-cockfighting-forum-new-posts__hero-title {
    font-size: 3.2em;
    margin-bottom: 15px;
    color: #FFFFFF;
    text-shadow: 2px 2px 4px rgba(0, 0, 0, 0.3);
}

.page-cockfighting-forum-new-posts__hero-subtitle {
    font-size: 1.3em;
    max-width: 800px;
    margin: 0 auto;
    color: #F0F0F0;
}

/* Content Section */
.page-cockfighting-forum-new-posts__content-section {
    padding: 60px 0;
    background-color: #f9f9f9;
}

.page-cockfighting-forum-new-posts__grid {
    display: grid;
    grid-template-columns: 1fr;
    gap: 40px;
}

@media (min-width: 992px) {
    .page-cockfighting-forum-new-posts__grid {
        grid-template-columns: 2fr 1fr;
    }
}

/* Post Card */
.page-cockfighting-forum-new-posts__post-card {
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 6px 20px rgba(0, 0, 0, 0.08);
    overflow: hidden;
    margin-bottom: 30px;
    display: flex;
    flex-direction: column;
}

.page-cockfighting-forum-new-posts__post-image {
    width: 100%;
    height: 280px;
    object-fit: cover;
    border-bottom: 4px solid #FFD700;
}

.page-cockfighting-forum-new-posts__post-body {
    padding: 25px;
    flex-grow: 1;
    display: flex;
    flex-direction: column;
}

.page-cockfighting-forum-new-posts__post-title {
    font-size: 1.8em;
    color: #8B0000;
    margin-top: 0;
    margin-bottom: 15px;
    line-height: 1.3;
}

.page-cockfighting-forum-new-posts__post-meta {
    font-size: 0.9em;
    color: #777777;
    margin-bottom: 15px;
}

.page-cockfighting-forum-new-posts__post-excerpt {
    margin-bottom: 20px;
    color: #555555;
    flex-grow: 1;
}

/* Buttons */
.page-cockfighting-forum-new-posts__btn {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 8px;
    text-decoration: none;
    font-weight: bold;
    transition: all 0.3s ease;
    text-align: center;
    cursor: pointer;
    border: none;
    font-size: 1.1em;
}

.page-cockfighting-forum-new-posts__btn--primary {
    background-color: #FFD700;
    color: #8B0000; /* Dark red text for gold button */
}

.page-cockfighting-forum-new-posts__btn--primary:hover {
    background-color: #e6c200;
    transform: translateY(-2px);
}

.page-cockfighting-forum-new-posts__btn--secondary {
    background-color: #8B0000;
    color: #FFD700; /* Gold text for dark red button */
    border: 2px solid #FFD700;
}

.page-cockfighting-forum-new-posts__btn--secondary:hover {
    background-color: #6a0000;
    border-color: #e6c200;
    transform: translateY(-2px);
}

.page-cockfighting-forum-new-posts__btn--full-width {
    width: 100%;
    box-sizing: border-box;
    margin-bottom: 15px;
}

.page-cockfighting-forum-new-posts__btn--large {
    padding: 15px 30px;
    font-size: 1.2em;
}

/* Sidebar */
.page-cockfighting-forum-new-posts__sidebar-widget {
    background-color: #FFFFFF;
    border-radius: 12px;
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.05);
    padding: 30px;
    margin-bottom: 30px;
    text-align: center;
}

.page-cockfighting-forum-new-posts__widget-title {
    font-size: 1.6em;
    color: #8B0000;
    margin-top: 0;
    margin-bottom: 20px;
    border-bottom: 2px solid #FFD700;
    padding-bottom: 10px;
}

.page-cockfighting-forum-new-posts__widget-image {
    width: 100%;
    max-width: 250px;
    height: auto;
    border-radius: 8px;
    margin-top: 20px;
    border: 2px solid #FFD700;
}

.page-cockfighting-forum-new-posts__popular-posts {
    list-style: none;
    padding: 0;
    margin: 0;
    text-align: left;
}

.page-cockfighting-forum-new-posts__popular-posts li {
    margin-bottom: 10px;
}

.page-cockfighting-forum-new-posts__popular-posts a {
    color: #555555;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.3s ease;
    display: block;
    padding: 8px 0;
    border-bottom: 1px dashed #eee;
}

.page-cockfighting-forum-new-posts__popular-posts a:hover {
    color: #8B0000;
    padding-left: 5px;
}

/* Pagination */
.page-cockfighting-forum-new-posts__pagination {
    display: flex;
    justify-content: center;
    align-items: center;
    margin-top: 40px;
    gap: 10px;
}

.page-cockfighting-forum-new-posts__pagination-link {
    display: inline-flex;
    justify-content: center;
    align-items: center;
    width: 40px;
    height: 40px;
    border-radius: 50%;
    text-decoration: none;
    color: #8B0000;
    border: 2px solid #FFD700;
    transition: all 0.3s ease;
    font-weight: bold;
    background-color: #FFFFFF;
}

.page-cockfighting-forum-new-posts__pagination-link:hover {
    background-color: #FFD700;
    color: #8B0000;
    border-color: #8B0000;
}

.page-cockfighting-forum-new-posts__pagination-link--active {
    background-color: #8B0000;
    color: #FFD700;
    border-color: #8B0000;
    pointer-events: none;
}

/* CTA Banner */
.page-cockfighting-forum-new-posts__cta-banner {
    background: #8B0000;
    color: #FFFFFF;
    padding: 60px 0;
    text-align: center;
    margin-top: 40px;
}

.page-cockfighting-forum-new-posts__cta-title {
    font-size: 2.8em;
    margin-bottom: 20px;
    color: #FFD700;
}

.page-cockfighting-forum-new-posts__cta-text {
    font-size: 1.2em;
    max-width: 900px;
    margin: 0 auto 30px auto;
    color: #F0F0F0;
}

.page-cockfighting-forum-new-posts__cta-buttons {
    display: flex;
    justify-content: center;
    gap: 20px;
    flex-wrap: wrap;
}

@media (max-width: 768px) {
    .page-cockfighting-forum-new-posts__hero {
        padding: 60px 0;
    }
    .page-cockfighting-forum-new-posts__hero-title {
        font-size: 2.5em;
    }
    .page-cockfighting-forum-new-posts__hero-subtitle {
        font-size: 1.1em;
    }
    .page-cockfighting-forum-new-posts__grid {
        grid-template-columns: 1fr;
    }
    .page-cockfighting-forum-new-posts__post-image {
        height: 220px;
    }
    .page-cockfighting-forum-new-posts__post-title {
        font-size: 1.5em;
    }
    .page-cockfighting-forum-new-posts__sidebar-widget {
        padding: 20px;
    }
    .page-cockfighting-forum-new-posts__widget-title {
        font-size: 1.4em;
    }
    .page-cockfighting-forum-new-posts__cta-banner {
        padding: 40px 0;
    }
    .page-cockfighting-forum-new-posts__cta-title {
        font-size: 2em;
    }
    .page-cockfighting-forum-new-posts__cta-text {
        font-size: 1em;
    }
    .page-cockfighting-forum-new-posts__cta-buttons {
        flex-direction: column;
        align-items: center;
    }
    .page-cockfighting-forum-new-posts__btn--large {
        width: 80%;
    }
}

@media (max-width: 480px) {
    .page-cockfighting-forum-new-posts__hero-title {
        font-size: 2em;
    }
    .page-cockfighting-forum-new-posts__post-title {
        font-size: 1.3em;
    }
    .page-cockfighting-forum-new-posts__btn {
        font-size: 1em;
        padding: 10px 20px;
    }
    .page-cockfighting-forum-new-posts__cta-title {
        font-size: 1.8em;
    }
    .page-cockfighting-forum-new-posts__btn--large {
        width: 90%;
        font-size: 1.1em;
    }
}