.drm-horizontal {
    display: flex;
    flex-direction: column;
    border: 3px solid #c67d30;
    border-radius: 7px;
    background: #ffffff;
    margin-bottom: 24px;
    overflow: hidden;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.04);
    font-family: inherit;
}


.drm-main {
    display: flex;
    flex-direction: row;
    align-items: stretch;
    padding: 0;
}

h3.business-title {
    font-size: 23px !important;
}


.drm-footer {
    display: flex;
    flex-direction: row;
    align-items: center;
    background: #ececec;
    border-top: 1px solid #bdb8ad;
    padding: 0 0 0 8px;
    min-height: 48px;
    gap: 8px;
}

.drm-info {
    flex: 1 1 0;
    padding: 24px 24px 0 24px;
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
}

.drm-logo-section {
    width: 180px;
    min-width: 140px;
    background: #D9D9D9;
    display: flex;
    align-items: center;
    justify-content: center;
    border-left: 1px solid #D9D9D9;
    position: relative;
}

.drm-logo {
    display: flex;
    align-items: center;
    justify-content: center;
    border-radius: 6px;
    overflow: hidden;
    margin: 0 auto;
    font-size: 0.95rem;
    color: #888;
    max-height: 75px;
}

.drm-footer-item {
    display: flex;
    align-items: center;
    font-size: 0.98rem;
    color: #222;
    border-radius: 4px;
    padding: 6px 12px;
    margin-right: 6px;
    gap: 6px;
}

.drm-logo img {
    width: auto;
    height: 65px;
}

.drm-view-profile {
    margin-left: auto;
    background: #c67d30;
    color: #000;
    font-weight: 600;
    border-radius: 0px;
    padding: 10px 24px;
    text-decoration: none;
    border: 3px solid #ffffff;
    transition: background 0.2s, color 0.2s;
    font-size: 16px;
    position: relative;
    z-index: 99;
    display: block;
    width: 180px;
    text-align: center;
}

a.drm-view-profile:hover {
    background-color: #ffffff;
    color: #000000;
}


@media (max-width: 768px) {
    .drm-footer {
        flex-direction: column;
        padding-left: 0px;
    }
    .drm-logo-section {
        display: none;
    }
    .drm-main {
        flex-direction: column;
    }
    a.drm-view-profile {
        width: 100%;
    }
}