.brand-marketing-sales-kit-tab {
    display: flex;
    gap: 16px;
    padding: 24px 40px 12px 40px;
    /* Added more bottom padding */

}

.btn-blue {
    background-color: #1da1f2;
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-blue:hover {
    background-color: #0d8ddb;
}

.btn-yellow {
    background-color: #f4b400;
    color: #fff;
    border: none;
    padding: 10px 18px;
    border-radius: 8px;
    font-weight: 600;
    font-size: 14px;
    cursor: pointer;
    transition: background-color 0.2s ease;
}

.btn-yellow:hover {
    background-color: #d9a100;
}

/* Resource section */
.resource-container {
    margin-top: 10px;
    padding: 0 40px 40px 40px;
    background-color: #ffffff;
    font-size: 14px;
    max-width: 900px;
    /* Optional: control how wide the table is */
    width: 100%;
    /* ✅ Makes it align left */
}

.resource-header {
    display: flex;
    padding: 10px 12px;
    background-color: #F4F9FD;
    font-weight: 600;
    color: #1da1f2;
}

.header-topic {
    width: 300px;
}

.header-link {
    flex: 1;
}

.resource-row {
    display: flex;
    padding: 10px 12px;
    border-bottom: 1px solid #eee;
    background-color: #ffffff;
    align-items: center;
}

.resource-topic {
    width: 300px;
    color: #333;
    font-weight: 500;
}

.resource-link {
    color: #1da1f2;
    text-decoration: underline;
    font-weight: 500;
}