/* Dakota Group Career Plugin - Frontend Styles */

/* ==========================================================================
   Shortcode 1: [dg_apply_logos] — Vertical logos
   ========================================================================== */

.dg-apply-logos {
    display: flex;
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
}

.dg-apply-logos__item {
    display: flex;
    align-items: center;
}

.dg-apply-logos__img {
    max-width: 40px;
    max-height: 40px;
    width: auto;
    height: auto;
    object-fit: contain;
}

/* ==========================================================================
   Shortcode 2: [dg_apply_links] — Horizontal links with arrow
   ========================================================================== */

.dg-apply-links {
    display: flex;
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
    gap: 15px;
}

.dg-apply-links__item {
    display: inline-flex;
    align-items: center;
    gap: 6px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    font-weight: 500;
    transition: color 0.2s ease;
}

.dg-apply-links__item:hover {
    color: #0073aa;
}

.dg-apply-links__logo {
    max-width: 20px;
    max-height: 20px;
    width: auto;
    height: auto;
    object-fit: contain;
}

.dg-apply-links__name {
    white-space: nowrap;
}

.dg-apply-links__arrow {
    font-size: 16px;
    line-height: 1;
    transition: transform 0.2s ease;
}

.dg-apply-links__item:hover .dg-apply-links__arrow {
    transform: translateX(3px);
}

/* ==========================================================================
   Shortcode 3: [dg_apply_buttons] — Apply via buttons
   ========================================================================== */

.dg-apply-buttons {
    display: flex;
    gap: 12px;
}

.dg-apply-buttons--vertical {
    flex-direction: column;
    align-items: flex-start;
}

.dg-apply-buttons--horizontal {
    flex-direction: row;
    flex-wrap: wrap;
    align-items: center;
}

.dg-apply-buttons__btn {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 10px 20px;
    background-color: #0073aa;
    color: #fff;
    text-decoration: none;
    border-radius: 4px;
    font-size: 14px;
    font-weight: 600;
    transition: background-color 0.2s ease;
    border: none;
    cursor: pointer;
}

.dg-apply-buttons__btn:hover {
    background-color: #005a87;
    color: #fff;
}

.dg-apply-buttons__logo {
    max-width: 20px;
    max-height: 20px;
    width: auto;
    height: auto;
    object-fit: contain;
    filter: brightness(0) invert(1);
}

.dg-apply-buttons__text {
    white-space: nowrap;
}
