/**
Theme Name: Astra Child
Author: Brainstorm Force
Author URI: http://wpastra.com/about/
Description: Astra Child Theme
Version: 1.0.0
License: GNU General Public License v2 or later
License URI: http://www.gnu.org/licenses/gpl-2.0.html
Text Domain: astra-child
Template: astra
*/

/* =============================================
   PRODUCT CATEGORY PAGES - LINK LIST (2 columns)
   Replaces the old card layout on every Templates
   sub-category page (Construction, Employee Handbook, etc).
   ============================================= */

.ddd-prod-list-wrap {
    display: flex;
    flex-wrap: nowrap;
    gap: 40px;
    align-items: flex-start;
    margin: -60px 0 2.5rem;
}

.ddd-prod-list {
    flex: 1 1 50%;
    min-width: 0;
    list-style: none;
    margin: 0;
    padding: 0;
}

.ddd-prod-list li {
    margin: 0;
    padding: 0;
    line-height: 1.5;
}

.ddd-prod-list li a {
    display: block;
    padding: 9px 0;
    font-size: 1rem;
    color: #1a6eff;
    text-decoration: none;
    border-bottom: 1px solid #eef0f4;
    transition: color 0.15s ease, padding 0.15s ease;
}

.ddd-prod-list li a:hover {
    color: #0052cc;
    padding-left: 5px;
}

/* On phones the two columns stack into one so the long
   template titles stay readable. */
@media (max-width: 768px) {
    .ddd-prod-list-wrap {
        flex-direction: column;
        gap: 0;
        margin-top: -25px;
    }
}