.dochub {/*
=======================================================================
FONT FACE
=======================================================================
*/
@font-face {
  font-family: "aileron";
  src: url(fonts/Aileron-Regular.ttf);
  font-weight: 400;
  font-style: normal;
}
@font-face {
  font-family: "aileron";
  src: url(fonts/Aileron-Bold.ttf);
  font-weight: 700;
  font-style: normal;
}
@font-face {
  font-family: "aileron";
  src: url(fonts/Aileron-Italic.ttf);
  font-weight: 400;
  font-style: italic;
}
@font-face {
  font-family: "aileron";
  src: url(fonts/BoldItalic.ttf);
  font-weight: 700;
  font-style: italic;
}
@font-face {
  font-family: "aileron";
  src: url(fonts/Aileron-Light.ttf);
  font-weight: 300;
  font-style: normal;
}
@font-face {
  font-family: "aileron";
  src: url(fonts/Aileron-Lightitalic.ttf);
  font-weight: 300;
  font-style: italic;
}
@font-face {
  font-family: "aileron";
  src: url(fonts/Aileron-SemiBold.ttf);
  font-weight: 500;
  font-style: normal;
}

@font-face {
  font-family: "mln-icons";
  src: url(fonts/sonic-corporate-webfont.ttf);
/*  src: url(fonts/fa-sharp-light-300.ttf); */
  font-weight: 700;
  font-style: normal;
}


/* General Reset & Base Styles */
body {
    font-family:aileron, Arial, sans-serif;
    font-weight: 400;
    font-style: normal;
    background-color: #f5f7fa;
    margin: 0;
    padding: 0;
    color: #292929;
    line-height: 1.5;
}

/* Header Simulation (Matches Sonic Link top bar) */
.section.introduction {
    font-family:aileron, Arial, sans-serif;
    font-style: normal;
    background-color: #f5f7fa; /* changed from #11316E */
    color: #11316E; /* changed from white */
    padding: 26px 16px 0px 16px;
    text-align: center; 
}

.section.introduction h1 {
    margin: 0;
    font-size: 24px;
    font-weight: 700;
}

/* Layout Container */
.common-section {
    padding: 16px;
    max-width: 1000px;
    margin: 0 auto;
}

/* --- MOBILE CARD VIEW (Small Screens) --- */

@media screen and (max-width: 600px) {
    table, tbody, tr, td {
        display: block;
        width: 100%;
    }

    /* Table row becomes the card */
    
    tr {
        background: #ffffff;
        margin-bottom: 10px; /* changed from 20px */
        padding: 20px;
        box-sizing: border-box;
    }

    /* Labels (The left column of your table) */
    td:first-child {
        text-transform: uppercase;
        font-size: 16px;
        color: #11316E;
        font-weight: bold;
        letter-spacing: 0.5px;
        padding-bottom: 4px;
    }

    /* Content (The right column of your table) */
    td:last-child {
        font-size: 16px;
        color: #292929; /* Navy blue titles like the screenshot */
        font-weight: 400;
/*        padding-bottom: 12px; */
/*        margin-bottom: 12px;  */
    }

    /* Special handling for the last item (Date) */
    tr:last-child td:last-child {
        border-bottom: none;
        color: #333;
        font-weight: 400;
        font-size: 14px;
    }
}

/* --- DESKTOP TABLE VIEW (Large Screens) --- */
@media screen and (min-width: 601px) {
    table {
        width: 100%;
        border-collapse: collapse;
        background: white;
        border-radius: 8px;
        overflow: hidden;
        box-shadow: 0 2px 8px rgba(0,0,0,0.05);
    }

    td {
        padding: 16px;
        border-bottom: 1px solid #eee;
        vertical-align: top;
    }

    td:first-child {
        text-transform: uppercase;
        background-color: #fafafa;
        font-weight: bold;
        width: 30%;
        color: #11316E;
    }
}}