@font-face {
    font-family: 'Antique Legacy';
    src: url('Antique-Legacy-Light.otf') format('opentype');
    font-weight: 300;
    font-style: normal;
}

@font-face {
    font-family: 'Antique Legacy';
    src: url('Antique-Legacy-Light-Italic.otf') format('opentype');
    font-weight: 300;
    font-style: italic;
}

@font-face {
    font-family: 'Antique Legacy';
    src: url('Antique-Legacy-Book.otf') format('opentype');
    font-weight: 400;
    font-style: normal;
}

@font-face {
    font-family: 'Antique Legacy';
    src: url('Antique-Legacy-Book-Italic.otf') format('opentype');
    font-weight: 400;
    font-style: italic;
}

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

body {
    font-family: 'Antique Legacy', sans-serif;
    background-color: #FFFFFF;
    color: #000000;
    font-weight: 300;
    font-size: 12.5px;
    line-height: 1.3;
}

/* Container - Unified Layout */
.container {
    width: 100%;
    min-height: 100dvh;
    display: grid;
    grid-template-rows: 1fr auto;
    grid-template-columns: 1fr 1fr;
    grid-template-areas: 
        "description description"
        "company careers";
    padding: 16px 24px;
    gap: 0;
}

/* Company Name */
.company-name {
    grid-area: company;
    font-weight: 300;
    font-style: italic;
    text-align: left;
    justify-self: start;
}

/* Description */
.description {
    grid-area: description;
    font-weight: 300;
    font-style: normal;
    margin: 0;
    justify-self: center;
    align-self: center;
}

.description p {
    margin: 0;
}

/* Careers Link */
.careers-link {
    grid-area: careers;
    text-decoration: none;
    color: #000000;
    font-weight: 300;
    font-style: normal;
    justify-self: end;
}

.careers-link:hover {
    opacity: 0.7;
}

/* Desktop adjustments */
@media (min-width: 768px) {
    .container {
        padding: 16px 24px;
    }
    
    .careers-link {
        align-self: end;
    }
}

/* Mobile adjustments */
@media (max-width: 767px) {
    .description {
        text-align: left;
        max-width: 375px;
        width: 100%;
    }
}
