/* custom.css - Logic Labs Overrides */

/* Typography & Spacing Overrides */
p {
    line-height: 1.7;
    font-weight: 300;
}

.features section {
    padding-top: 2em;
}

.wrapper.style1.minimal-pad {
    padding-top: 4em;
    padding-bottom: 4em;
}

/* Callout Boxes */
.important-notice, .philosophy-box {
    background: rgba(255, 255, 255, 0.05);
    border-left: 4px solid #fff;
    padding: 1.5em 2em;
    margin: 2em 0;
    border-radius: 0 4px 4px 0;
}

.important-notice h3, .philosophy-box h3 {
    margin-bottom: 0.5em;
    font-weight: 600;
}

/* Custom Grid for Methodology */
.grid-style {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(300px, 1fr));
    gap: 2em;
    margin-top: 2em;
}

.grid-style div {
    background: rgba(0, 0, 0, 0.2);
    padding: 2em;
    border-radius: 6px;
    border: 1px solid rgba(255, 255, 255, 0.1);
}

/* Minimal Table Styling */
.table-wrapper {
    overflow-x: auto;
}

table.minimal-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 2em;
    font-size: 0.95em;
}

table.minimal-table thead tr {
    border-bottom: 2px solid rgba(255, 255, 255, 0.2);
}

table.minimal-table th {
    text-align: left;
    padding: 1em;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.05em;
}

table.minimal-table td {
    padding: 1em;
    border-bottom: 1px solid rgba(255, 255, 255, 0.05);
}

table.minimal-table tbody tr:hover {
    background-color: rgba(255, 255, 255, 0.03);
}

/* Resource & Archive Lists */
ul.resource-list li {
    margin-bottom: 1em;
    padding-left: 1em;
    border-left: 2px solid rgba(255,255,255,0.2);
    list-style: none;
}

.archive-grid ul {
    columns: 2;
    -webkit-columns: 2;
    -moz-columns: 2;
    column-gap: 3em;
}

@media screen and (max-width: 768px) {
    .archive-grid ul {
        columns: 1;
        -webkit-columns: 1;
        -moz-columns: 1;
    }
}