/* Guidelines Hero */
.guidelines-hero {
    /*background: linear-gradient(45deg, rgba(0, 0, 0, .8), rgba(0, 0, 0, .5)), url('../images/authorguide.png');*/
    background: linear-gradient(45deg, #800000, #800000);
    background-size: cover;
    background-position: bottom;

    padding: 60px 0;
    /* margin-bottom: 40px; */
    border-bottom: 2px solid var(--red);
    position: relative;
    overflow: hidden;
}

.guidelines-hero::before {
    content: "GUIDELINES";
    position: absolute;
    right: -10px;
    bottom: -10px;
    font-family: var(--serif);
    font-size: 100px;
    font-weight: 700;
    color: rgba(255, 255, 255, 0.03);
    line-height: 1;
    pointer-events: none;
}

.guidelines-hero-title {
    font-family: var(--serif);
    font-size: clamp(32px, 4vw, 48px);
    font-weight: 700;
    color: white;
    margin-bottom: 10px;
    position: relative;
    display: inline-block;
}

.guidelines-hero-title::after {
    content: '';
    position: absolute;
    bottom: -8px;
    left: 0;
    width: 60px;
    height: 2px;
    /*background: var(--red);*/
    background: #dfdfdf;
}

.guidelines-hero-subtitle {
    font-size: 16px;
    color: rgba(255, 255, 255, 0.7);
    margin-top: 15px;
    max-width: 600px;
}

/* Guidelines Content */
.guidelines-content-section {
    padding: 30px 0 50px 0;
    background: var(--smoke);
}

.guidelines-card {
    background: var(--white);
    border: 1px solid var(--line);
    border-radius: 8px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.02);
}

.guidelines-title {
    font-family: var(--serif);
    font-size: 28px;
    font-weight: 700;
    color: var(--ink);
    margin-bottom: 30px;
    padding-bottom: 10px;
    border-bottom: 2px solid var(--red);
}

/* Guidelines Table */
.guidelines-table {
    width: 100%;
    border-collapse: collapse;
    margin-bottom: 30px;
}

.guidelines-table tr {
    border-bottom: 1px solid var(--line);
}

.guidelines-table tr:last-child {
    border-bottom: none;
}

.guidelines-table td {
    padding: 15px 10px;
    vertical-align: top;
}

.guidelines-table td:first-child {
    width: 180px;
    font-weight: 600;
    color: var(--red);
    font-family: var(--serif);
    font-size: 18px;
}

.guidelines-table td:last-child {
    color: var(--ink3);
    line-height: 1.7;
}

.example-text {
    background: var(--smoke);
    padding: 10px 15px;
    border-radius: 4px;
    font-style: italic;
    margin: 10px 0;
    border-left: 3px solid var(--red);
    font-size: 14px;
}

.example-text i {
    color: var(--red);
}

.note-box {
    background: rgba(200, 16, 46, 0.03);
    padding: 20px;
    border-radius: 6px;
    border-left: 4px solid var(--red);
    margin: 25px 0;
}

.note-box p {
    margin-bottom: 8px;
    color: var(--ink3);
}

.note-box p:last-child {
    margin-bottom: 0;
}

.contact-email {
    background: var(--smoke);
    padding: 15px 20px;
    border-radius: 6px;
    border: 1px solid var(--line);
    margin: 20px 0;
    font-family: monospace;
    font-size: 16px;
}

.contact-email i {
    color: var(--red);
    margin-right: 10px;
}

.contact-email a {
    color: var(--red);
    text-decoration: none;
}

.contact-email a:hover {
    text-decoration: underline;
}

.bullet-list {
    list-style: none;
    padding-left: 0;
}

.bullet-list li {
    padding: 5px 0;
    padding-left: 20px;
    position: relative;
}

.bullet-list li::before {
    content: '•';
    color: var(--red);
    font-size: 18px;
    position: absolute;
    left: 0;
    top: 2px;
}

.important-note {
    /* background: #fff3cd;/ */
    border: 1px solid #eb5361a6;
    color: #856404;
    padding: 20px;
    border-radius: 6px;
    margin-top: 30px;
}

/* Responsive */
@media (max-width: 768px) {
    .guidelines-card {
        padding: 25px;
    }

    .guidelines-hero::before {
        font-size: 70px;
    }

    .guidelines-table td {
        display: block;
        width: 100%;
        padding: 10px 0;
    }

    .guidelines-table td:first-child {
        width: 100%;
        padding-bottom: 5px;
    }

    .guidelines-table tr {
        display: block;
        padding: 15px 0;
    }
}