/* CSS för Om Oss Pro Plugin */

@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

.om-oss-hero-section {
    height: 400px;
    width: 100%;
    background-size: cover;
    background-position: center 60%;
    border-bottom-left-radius: 50% 40px;
    border-bottom-right-radius: 50% 40px;
}
.om-oss-page-wrapper {
    margin-top: -40px;
    padding: 80px 20px 40px 20px;
}
.om-oss-container {
    font-family: 'Montserrat', sans-serif;
    display: flex;
    flex-wrap: wrap;
    gap: 60px;
    max-width: 1140px;
    margin: auto;
    line-height: 1.8;
}
.om-oss-main-content {
    flex: 2;
    min-width: 300px;
}
.om-oss-tagline {
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 1.5px;
    margin-bottom: 8px;
    display: block;
}
.om-oss-main-content h1 {
    font-size: 46px;
    color: #253D42;
    margin-bottom: 25px;
    font-weight: 700;
    line-height: 1.2;
}
.om-oss-main-content h2 {
    font-size: 28px;
    color: #253D42;
    margin-top: 40px;
    margin-bottom: 20px;
    font-weight: 600;
}
.om-oss-main-content p {
    font-size: 16px;
    color: #586165;
    font-weight: 500;
    margin-bottom: 25px;
}
.om-oss-sidebar {
    flex: 1;
    min-width: 300px;
    padding-top: 15px;
}
.om-oss-card {
    background-color: #ffffff;
    box-shadow: 0 10px 30px rgba(0,0,0,0.07);
    border-radius: 8px;
    overflow: hidden;
}
.om-oss-card img {
    width: 100%;
    height: auto;
    display: block;
}
.om-oss-card-content {
    padding: 30px;
    color: #ffffff;
}
.om-oss-card-content h3 {
    margin-top: 0;
    margin-bottom: 15px;
    font-size: 22px;
    font-weight: 700;
}
.om-oss-card-content p {
    color: #ffffff !important; /* Säkerställer vit textfärg */
    font-size: 16px;
    font-weight: 500;
    margin-bottom: 0;
    line-height: 1.6;
}
@media (max-width: 768px) {
    .om-oss-hero-section {
        height: 280px;
        border-radius: 0;
    }
    .om-oss-page-wrapper {
        margin-top: 0;
        padding: 40px 20px;
    }
    .om-oss-main-content h1 { font-size: 38px; }
    .om-oss-main-content h2 { font-size: 24px; }
}