/* style/resources-thomo-cockfighting-guide.css */

/* Base Styles for the page */
.page-resources-thomo-cockfighting-guide {
    font-family: Arial, sans-serif;
    line-height: 1.6;
    background-color: #ffffff; /* Main content background for contrast with body's dark background */
    color: #333333; /* Dark text for light background */
}

.page-resources-thomo-cockfighting-guide__container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
    box-sizing: border-box;
}

.page-resources-thomo-cockfighting-guide__section-title {
    font-size: 2.5em;
    color: #017439; /* Brand primary color for titles */
    text-align: center;
    margin-bottom: 40px;
    position: relative;
    padding-bottom: 15px;
}

.page-resources-thomo-cockfighting-guide__section-title::after {
    content: '';
    position: absolute;
    left: 50%;
    bottom: 0;
    transform: translateX(-50%);
    width: 80px;
    height: 4px;
    background-color: #C30808; /* Accent color for underline */
    border-radius: 2px;
}

.page-resources-thomo-cockfighting-guide__sub-title {
    font-size: 1.8em;
    color: #017439;
    margin-top: 30px;
    margin-bottom: 15px;
}

.page-resources-thomo-cockfighting-guide__content-block {
    margin-bottom: 30px;
}

.page-resources-thomo-cockfighting-guide p {
    margin-bottom: 15px;
}

.page-resources-thomo-cockfighting-guide__list,
.page-resources-thomo-cockfighting-guide__ordered-list {
    list-style-type: disc;
    margin-left: 20px;
    margin-bottom: 20px;
    padding-left: 0;
}

.page-resources-thomo-cockfighting-guide__ordered-list {
    list-style-type: decimal;
}

.page-resources-thomo-cockfighting-guide__list li,
.page-resources-thomo-cockfighting-guide__ordered-list li {
    margin-bottom: 10px;
}

.page-resources-thomo-cockfighting-guide__text-link {
    color: #017439;
    text-decoration: underline;
    font-weight: bold;
}

.page-resources-thomo-cockfighting-guide__text-link:hover {
    color: #C30808;
}

/* Buttons */
.page-resources-thomo-cockfighting-guide__btn-primary,
.page-resources-thomo-cockfighting-guide__btn-secondary,
.page-resources-thomo-cockfighting-guide__cta-button {
    display: inline-block;
    padding: 12px 25px;
    border-radius: 5px;
    text-decoration: none;
    font-weight: bold;
    transition: background-color 0.3s ease, color 0.3s ease, border-color 0.3s ease;
    text-align: center;
    cursor: pointer;
    box-sizing: border-box;
    white-space: normal; /* Allow text wrap */
    word-wrap: break-word; /* Allow text wrap */
    max-width: 100%; /* Ensure button doesn't overflow */
}

.page-resources-thomo-cockfighting-guide__btn-primary {
    background-color: #017439;
    color: #ffffff;
    border: 2px solid #017439;
}

.page-resources-thomo-cockfighting-guide__btn-primary:hover {
    background-color: #005a2e;
    border-color: #005a2e;
}

.page-resources-thomo-cockfighting-guide__btn-secondary {
    background-color: #ffffff;
    color: #017439;
    border: 2px solid #017439;
}