
    /* SECTION */
    #conferences {
        background: #F6F5FF;
        padding: 70px 0;
        color: #363232;
    }

    /* HEADER */
    .conf-header h2 {
        font-family: 'Russo One', sans-serif;
        letter-spacing: 2px;
        margin-bottom: 5px;
        color:#000000;
    }

    .conf-header .sub {
        font-size: 13px;
        opacity: 0.8;
    }

    .conf-header hr {
        width: 80px;
        border: 1px solid #00e5ff;
        margin: 15px auto 40px;
    }

    /* YEAR TABS */
    .conf-years {
        list-style: none;
        padding: 0;
        margin-bottom: 40px;
    }

    .conf-years li {
        display: inline-block;
        margin: 0 8px;
        padding: 8px 16px;
        cursor: pointer;
        border-radius: 20px;
        background: rgba(48, 46, 46, 0.12);
        transition: all .3s;
    }

    .conf-years li.active,
    .conf-years li:hover {
        background: #00e5ff;
        color: #18191a;
    }

    .conf-years li a {
        color: #161515;
        text-decoration: none;
    }

    /* CONTENT */
    .conf-year {
        display: none;
    }

    .conf-year.active {
        display: block;
    }

    /* CARD */
    .conf-card {
        background: rgba(255, 255, 255, 0.822);
        border-radius: 8px;
        padding: 20px;
        margin-bottom: 30px;
        position: relative;
        transition: transform .3s, box-shadow .3s;
    }

    .conf-card:hover {
        transform: translateY(-6px);
        box-shadow: 0 15px 35px rgba(0, 0, 0, 0.35);
    }

    /* YEAR BADGE */
    .conf-badge {
        position: absolute;
        top: 15px;
        right: 15px;
        font-size: 12px;
        padding: 4px 10px;
        background: rgba(164, 174, 175, 0.2);
        color: #161818;
        border-radius: 20px;
    }

    /* TEXT */
    .conf-card h4 {
        font-size: 16px;
        font-weight: 700;
        margin-bottom: 8px;
        
    }
    .conf-card:hover h4{
        color: #1b2425;
    }
    .conf-card p {
        font-size: 14px;
        line-height: 1.5;
        opacity: 0.9;
    }

    .conf-card .date {
        font-size: 12px;
        opacity: 0.7;
    }

    /* ACTIONS */
    .conf-actions {
        margin-top: 12px;
    }

    .conf-actions a {
        font-size: 12px;
        text-transform: uppercase;
        margin-right: 12px;
        color: #1b2425;
        text-decoration: none;
    }

    .conf-actions a.site {
        color: #ffd54f;
    }
