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

:root {
    --bg: #f7f3ec;
    --bg-alt: #fbf8f3;
    --surface: #ffffff;
    --surface-soft: #f4ece1;
    --ink: #111b2f;
    --ink-soft: #5f6778;
    --line: #e4d8c7;
    --accent: #c1773d;
    --accent-2: #0d7a67;
    --accent-deep: #8f4f1f;
    --danger: #b54242;
    --shadow: 0 14px 38px rgba(17, 27, 47, 0.08);
    --radius-lg: 28px;
    --radius-md: 18px;
    --radius-sm: 12px;
    --container: 1180px;
}

* {
    box-sizing: border-box;
}

html,
body {
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Manrope', sans-serif;
    background:
        radial-gradient(circle at 8% 2%, rgba(193, 119, 61, 0.17), transparent 28%),
        radial-gradient(circle at 92% 8%, rgba(13, 122, 103, 0.12), transparent 31%),
        linear-gradient(180deg, #fdfbf7 0%, var(--bg) 100%);
    color: var(--ink);
    line-height: 1.6;
    min-height: 100vh;
}

a {
    color: inherit;
    text-decoration: none;
}

a:hover {
    color: inherit;
    text-decoration: none;
}

img {
    max-width: 100%;
    display: block;
}

main {
    display: block;
}

.page-shell {
    padding: 0 16px 40px;
}

.site-header {
    position: sticky;
    top: 0;
    z-index: 1000;
    padding: 18px 16px;
    backdrop-filter: blur(12px);
    background: rgba(253, 248, 240, 0.78);
    border-bottom: 1px solid rgba(228, 216, 199, 0.7);
}

.nav-wrap {
    max-width: var(--container);
    margin: 0 auto;
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 12px 8px 18px;
    background: rgba(255, 255, 255, 0.87);
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 18px;
    box-shadow: var(--shadow);
}

.site-brand {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    min-width: 185px;
}

.brand-badge {
    width: 34px;
    height: 34px;
    border-radius: 10px;
    display: grid;
    place-items: center;
    background: linear-gradient(145deg, #d48a4b, #b46328);
    color: #fff;
    font-weight: 800;
    letter-spacing: 0.06em;
    font-size: 0.8rem;
}

.brand-text {
    display: block;
}

.brand-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.45rem;
    line-height: 1;
    font-weight: 700;
}

.brand-subtitle {
    margin-top: 1px;
    font-size: 0.74rem;
    color: var(--ink-soft);
    letter-spacing: 0.08em;
    text-transform: uppercase;
}

.site-nav {
    display: flex;
    align-items: center;
    gap: 14px;
}

.site-nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
}

.nav-list {
    display: flex;
    align-items: center;
    gap: 8px;
}

.nav-link {
    padding: 9px 13px;
    border-radius: 999px;
    color: var(--ink-soft);
    font-weight: 600;
    font-size: 0.92rem;
    transition: all 0.25s ease;
    display: inline-flex;
    align-items: center;
    gap: 4px;
}

.nav-link:hover,
.nav-item.active > .nav-link {
    background: var(--surface-soft);
    color: var(--ink);
}

.nav-item {
    position: relative;
}

.nav-item.has-dropdown > .nav-link::after {
    content: '\25BE';
    font-size: 0.6rem;
    opacity: 0.7;
    margin-top: 2px;
}

.dropdown-menu {
    position: absolute;
    top: calc(100% + 12px);
    left: 0;
    min-width: 220px;
    border-radius: var(--radius-sm);
    border: 1px solid var(--line);
    background: #fff;
    box-shadow: var(--shadow);
    opacity: 0;
    visibility: hidden;
    transform: translateY(8px);
    transition: all 0.25s ease;
    padding: 8px;
}

.nav-item.has-dropdown:hover .dropdown-menu {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-menu a {
    display: block;
    border-radius: 8px;
    padding: 9px 10px;
    color: var(--ink-soft);
    font-size: 0.9rem;
}

.dropdown-menu a:hover {
    background: var(--surface-soft);
    color: var(--ink);
}

.header-cta {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    background: linear-gradient(135deg, var(--accent), var(--accent-deep));
    color: #fff;
    border-radius: 999px;
    padding: 10px 16px;
    font-size: 0.86rem;
    font-weight: 700;
    box-shadow: 0 9px 22px rgba(193, 119, 61, 0.3);
}

.header-cta:hover {
    transform: translateY(-1px);
    color: #fff;
}

.menu-toggle {
    border: 0;
    background: transparent;
    width: 42px;
    height: 42px;
    display: none;
    align-items: center;
    justify-content: center;
    border-radius: 50%;
    cursor: pointer;
}

.menu-toggle span,
.menu-toggle span::before,
.menu-toggle span::after {
    display: block;
    content: '';
    width: 18px;
    height: 2px;
    border-radius: 2px;
    background: var(--ink);
    position: relative;
    transition: transform 0.2s ease;
}

.menu-toggle span::before {
    position: absolute;
    top: -6px;
    left: 0;
}

.menu-toggle span::after {
    position: absolute;
    top: 6px;
    left: 0;
}

.section {
    max-width: var(--container);
    margin: 0 auto 28px;
}

.hero {
    margin-top: 22px;
    border: 1px solid var(--line);
    background: linear-gradient(130deg, rgba(255, 255, 255, 0.97), rgba(245, 236, 225, 0.9));
    border-radius: var(--radius-lg);
    overflow: hidden;
    box-shadow: var(--shadow);
}

.hero-grid {
    display: grid;
    grid-template-columns: 1.2fr 0.8fr;
    gap: 24px;
    padding: 38px;
}

.hero-kicker {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 6px 10px;
    border-radius: 999px;
    background: rgba(17, 27, 47, 0.07);
    color: var(--ink-soft);
    font-size: 0.78rem;
    font-weight: 700;
    letter-spacing: 0.06em;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.hero-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2.1rem, 5vw, 4rem);
    line-height: 0.95;
    margin: 0;
    letter-spacing: -0.01em;
}

.hero-title span {
    color: var(--accent-deep);
}

.hero-text {
    margin-top: 14px;
    color: var(--ink-soft);
    max-width: 640px;
}

.hero-actions {
    margin-top: 24px;
    display: flex;
    gap: 12px;
    flex-wrap: wrap;
}

.btn-main,
.btn-alt,
.btn-ghost {
    border-radius: 999px;
    border: 1px solid transparent;
    padding: 11px 18px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    font-size: 0.9rem;
    font-weight: 700;
    cursor: pointer;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
}

.btn-main {
    color: #fff;
    background: linear-gradient(135deg, var(--accent), var(--accent-deep));
    box-shadow: 0 10px 25px rgba(193, 119, 61, 0.3);
}

.btn-main:hover {
    color: #fff;
    transform: translateY(-1px);
}

.btn-alt {
    color: #fff;
    background: linear-gradient(140deg, var(--accent-2), #0a6052);
    box-shadow: 0 10px 25px rgba(13, 122, 103, 0.25);
}

.btn-alt:hover {
    color: #fff;
    transform: translateY(-1px);
}

.btn-ghost {
    border-color: var(--line);
    background: #fff;
    color: var(--ink);
}

.btn-ghost:hover {
    color: var(--ink);
    transform: translateY(-1px);
}

.stat-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.hero-right {
    display: grid;
    gap: 12px;
}

.owner-spotlight {
    display: grid;
    grid-template-columns: 72px 1fr;
    gap: 12px;
    align-items: center;
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 14px;
}

.owner-photo {
    width: 72px;
    height: 72px;
    border-radius: 14px;
    object-fit: cover;
    border: 1px solid var(--line);
}

.owner-label {
    margin: 0;
    font-size: 0.72rem;
    color: var(--ink-soft);
    text-transform: uppercase;
    letter-spacing: 0.08em;
    font-weight: 700;
}

.owner-name {
    margin: 2px 0 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.35rem;
    line-height: 1.05;
}

.owner-role {
    margin: 4px 0 0;
    color: var(--ink-soft);
    font-size: 0.85rem;
}

.owner-link {
    margin-top: 7px;
    display: inline-flex;
    align-items: center;
    gap: 6px;
    color: var(--accent-deep);
    font-size: 0.83rem;
    font-weight: 700;
}

.stat-card {
    background: #fff;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    padding: 16px;
}

.stat-value {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.6rem, 4vw, 2.1rem);
    line-height: 1;
    margin-bottom: 4px;
}

.stat-label {
    font-size: 0.82rem;
    color: var(--ink-soft);
    text-transform: uppercase;
    letter-spacing: 0.06em;
}

.filter-panel {
    margin-top: 24px;
    border-radius: var(--radius-md);
    border: 1px solid var(--line);
    background: var(--surface);
    padding: 18px;
    box-shadow: var(--shadow);
}

.filter-panel form {
    display: grid;
    grid-template-columns: 1.5fr repeat(3, 1fr) auto;
    gap: 10px;
}

.filter-panel label {
    display: block;
    font-size: 0.77rem;
    color: var(--ink-soft);
    font-weight: 700;
    margin-bottom: 4px;
    letter-spacing: 0.05em;
    text-transform: uppercase;
}

.input,
.select,
.textarea {
    width: 100%;
    border: 1px solid var(--line);
    border-radius: 11px;
    background: #fff;
    padding: 11px 12px;
    font-family: inherit;
    font-size: 0.95rem;
    color: var(--ink);
    outline: none;
}

.input:focus,
.select:focus,
.textarea:focus {
    border-color: var(--accent);
    box-shadow: 0 0 0 3px rgba(193, 119, 61, 0.13);
}

.select {
    appearance: none;
    background-image: linear-gradient(45deg, transparent 50%, var(--ink-soft) 50%),
        linear-gradient(135deg, var(--ink-soft) 50%, transparent 50%);
    background-position: calc(100% - 16px) calc(50% - 2px), calc(100% - 11px) calc(50% - 2px);
    background-size: 5px 5px;
    background-repeat: no-repeat;
    padding-right: 30px;
}

.filter-actions {
    display: flex;
    align-items: flex-end;
    gap: 8px;
}

.filter-tags {
    margin-top: 14px;
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.tag {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 7px 11px;
    border-radius: 999px;
    border: 1px solid var(--line);
    background: var(--surface-soft);
    font-size: 0.8rem;
    color: var(--ink-soft);
}

.section-head {
    margin-bottom: 16px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 12px;
    flex-wrap: wrap;
}

.section-title {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.65rem, 3vw, 2.3rem);
    line-height: 1;
}

.section-subtitle {
    margin: 4px 0 0;
    color: var(--ink-soft);
    font-size: 0.95rem;
}

.category-pills {
    display: flex;
    flex-wrap: wrap;
    gap: 8px;
}

.category-pill {
    padding: 8px 12px;
    border: 1px solid var(--line);
    border-radius: 999px;
    font-size: 0.84rem;
    color: var(--ink-soft);
    background: #fff;
}

.category-pill:hover,
.category-pill.active {
    border-color: rgba(193, 119, 61, 0.45);
    background: rgba(193, 119, 61, 0.12);
    color: var(--ink);
}

.content-layout {
    display: grid;
    grid-template-columns: minmax(0, 2fr) minmax(260px, 0.9fr);
    gap: 18px;
}

.shayari-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 14px;
}

.card {
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: #fff;
    box-shadow: var(--shadow);
}

.shayari-card {
    padding: 18px;
    display: flex;
    flex-direction: column;
    gap: 11px;
}

.card-top {
    display: flex;
    align-items: center;
    justify-content: space-between;
    gap: 8px;
    flex-wrap: wrap;
}

.badges {
    display: flex;
    flex-wrap: wrap;
    gap: 6px;
}

.badge {
    display: inline-flex;
    align-items: center;
    padding: 5px 10px;
    border-radius: 999px;
    font-size: 0.73rem;
    letter-spacing: 0.04em;
    text-transform: uppercase;
    border: 1px solid transparent;
    font-weight: 700;
}

.badge.category {
    background: rgba(13, 122, 103, 0.11);
    color: #0b6b5a;
}

.badge.language {
    background: rgba(193, 119, 61, 0.14);
    color: #91501f;
}

.badge.pending {
    background: rgba(181, 66, 66, 0.14);
    color: #8e3131;
}

.card-date {
    font-size: 0.78rem;
    color: var(--ink-soft);
}

.shayari-title {
    font-size: clamp(1.12rem, 2vw, 1.5rem);
    line-height: 1.25;
    margin: 0;
    font-weight: 800;
}

.shayari-title a:hover {
    color: var(--accent-deep);
}

.shayari-body {
    margin: 0;
    color: var(--ink-soft);
    line-height: 1.8;
    white-space: pre-line;
}

.rtl {
    direction: rtl;
    text-align: right;
    font-family: 'Cormorant Garamond', serif;
    font-size: 1.06rem;
}

.card-foot {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    padding-top: 6px;
    border-top: 1px dashed var(--line);
}

.card-author {
    font-size: 0.83rem;
    color: var(--ink-soft);
}

.meta-list {
    display: inline-flex;
    align-items: center;
    gap: 10px;
    color: var(--ink-soft);
    font-size: 0.8rem;
}

.meta-list strong {
    color: var(--ink);
    font-weight: 700;
}

.sidebar-stack {
    display: flex;
    flex-direction: column;
    gap: 14px;
}

.side-card {
    padding: 16px;
}

.side-card h3 {
    margin: 0;
    font-size: 1rem;
}

.side-list {
    list-style: none;
    margin: 12px 0 0;
    padding: 0;
}

.side-list li + li {
    margin-top: 8px;
}

.side-list a {
    display: flex;
    justify-content: space-between;
    gap: 8px;
    border: 1px solid var(--line);
    border-radius: 10px;
    padding: 8px 10px;
    color: var(--ink-soft);
    background: #fff;
}

.side-list a:hover {
    border-color: rgba(193, 119, 61, 0.5);
    color: var(--ink);
}

.side-count {
    font-weight: 800;
    color: var(--accent-deep);
    font-size: 0.8rem;
}

.notice-empty {
    border: 1px dashed var(--line);
    border-radius: var(--radius-md);
    background: var(--surface);
    padding: 28px;
    text-align: center;
    color: var(--ink-soft);
}

.callout {
    padding: 25px;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: linear-gradient(135deg, rgba(13, 122, 103, 0.09), rgba(255, 255, 255, 0.96));
    box-shadow: var(--shadow);
}

.callout h3 {
    margin: 0;
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(1.6rem, 3vw, 2.3rem);
}

.callout p {
    color: var(--ink-soft);
    margin: 8px 0 0;
}

.callout .btn-group {
    margin-top: 16px;
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
}

.single-wrap {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: var(--surface);
    box-shadow: var(--shadow);
    padding: 28px;
}

.single-top {
    display: flex;
    justify-content: space-between;
    align-items: flex-start;
    gap: 10px;
    flex-wrap: wrap;
    margin-bottom: 14px;
}

.single-title {
    font-family: 'Cormorant Garamond', serif;
    font-size: clamp(2rem, 5vw, 3.3rem);
    line-height: 0.95;
    margin: 0;
}

.single-meta {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 10px;
    color: var(--ink-soft);
    font-size: 0.9rem;
}

.single-body {
    margin-top: 18px;
    padding: 24px;
    border: 1px solid var(--line);
    border-radius: var(--radius-md);
    background: linear-gradient(180deg, #ffffff, #f8f3ea);
    font-size: 1.15rem;
    line-height: 2;
    white-space: pre-line;
}

.alt-lines {
    margin-top: 14px;
    display: grid;
    gap: 8px;
}

.alt-line {
    padding: 10px 12px;
    border: 1px solid var(--line);
    border-radius: 10px;
    background: #fff;
    color: var(--ink-soft);
}

.share-row {
    margin-top: 18px;
    display: flex;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
}

.share-link {
    border: 1px solid var(--line);
    border-radius: 999px;
    padding: 8px 12px;
    font-size: 0.82rem;
    color: var(--ink-soft);
    background: #fff;
}

.share-link:hover {
    color: var(--ink);
    border-color: rgba(193, 119, 61, 0.48);
}

.related-grid {
    margin-top: 18px;
    display: grid;
    grid-template-columns: repeat(3, minmax(0, 1fr));
    gap: 12px;
}

.related-card {
    padding: 14px;
}

.related-card h4 {
    margin: 0;
    font-size: 1rem;
    line-height: 1.25;
}

.related-card p {
    margin: 8px 0 0;
    color: var(--ink-soft);
    font-size: 0.85rem;
}

.form-wrap {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--shadow);
    padding: 28px;
}

.form-grid {
    display: grid;
    grid-template-columns: repeat(2, minmax(0, 1fr));
    gap: 12px;
}

.form-grid .full {
    grid-column: 1 / -1;
}

.label {
    font-size: 0.78rem;
    color: var(--ink-soft);
    font-weight: 700;
    letter-spacing: 0.05em;
    text-transform: uppercase;
    margin-bottom: 5px;
    display: block;
}

.textarea {
    min-height: 130px;
    resize: vertical;
}

.alert {
    border-radius: 12px;
    padding: 12px 14px;
    border: 1px solid transparent;
    margin-bottom: 14px;
    font-size: 0.9rem;
}

.alert.success {
    border-color: rgba(13, 122, 103, 0.32);
    background: rgba(13, 122, 103, 0.09);
    color: #0b6b5a;
}

.alert.error {
    border-color: rgba(181, 66, 66, 0.32);
    background: rgba(181, 66, 66, 0.08);
    color: #8e3131;
}

.page-card {
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: #fff;
    box-shadow: var(--shadow);
    padding: 28px;
}

.page-card h1,
.page-card h2,
.page-card h3 {
    font-family: 'Cormorant Garamond', serif;
    margin-top: 0;
}

.page-card h1 {
    font-size: clamp(2rem, 5vw, 3rem);
}

.page-card h2 {
    margin-top: 18px;
    font-size: 1.65rem;
}

.page-card p,
.page-card li {
    color: var(--ink-soft);
}

.split {
    display: grid;
    grid-template-columns: 1.05fr 0.95fr;
    gap: 18px;
}

.contact-cards {
    display: grid;
    gap: 10px;
}

.contact-item {
    border: 1px solid var(--line);
    border-radius: 12px;
    background: #fff;
    padding: 14px;
}

.contact-item h3 {
    margin: 0;
    font-size: 1.12rem;
}

.contact-item p {
    margin: 4px 0 0;
    color: var(--ink-soft);
    font-size: 0.9rem;
}

.site-footer {
    margin-top: 32px;
    padding: 0 16px 24px;
}

.footer-wrap {
    max-width: var(--container);
    margin: 0 auto;
    border: 1px solid var(--line);
    border-radius: var(--radius-lg);
    background: linear-gradient(180deg, #fff, #f8f2e9);
    box-shadow: var(--shadow);
    padding: 22px;
}

.footer-grid {
    display: grid;
    grid-template-columns: 1.2fr 1fr 1fr;
    gap: 18px;
}

.footer-brand {
    max-width: 380px;
}

.footer-brand p {
    margin: 8px 0 0;
    color: var(--ink-soft);
    font-size: 0.9rem;
}

.footer-title {
    margin: 0;
    font-size: 0.84rem;
    letter-spacing: 0.06em;
    color: var(--ink-soft);
    text-transform: uppercase;
}

.footer-links {
    list-style: none;
    margin: 10px 0 0;
    padding: 0;
}

.footer-links li + li {
    margin-top: 8px;
}

.footer-links a {
    color: var(--ink-soft);
    font-size: 0.9rem;
}

.footer-links a:hover {
    color: var(--ink);
}

.footer-bottom {
    margin-top: 16px;
    padding-top: 14px;
    border-top: 1px solid var(--line);
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
    flex-wrap: wrap;
    color: var(--ink-soft);
    font-size: 0.82rem;
}

.fade-in {
    animation: fadeUp 0.55s ease both;
}

.delay-1 { animation-delay: 0.08s; }
.delay-2 { animation-delay: 0.16s; }
.delay-3 { animation-delay: 0.24s; }

@keyframes fadeUp {
    from {
        opacity: 0;
        transform: translateY(14px);
    }

    to {
        opacity: 1;
        transform: translateY(0);
    }
}

@media (max-width: 1080px) {
    .hero-grid,
    .content-layout,
    .split,
    .footer-grid {
        grid-template-columns: 1fr;
    }

    .shayari-grid,
    .related-grid {
        grid-template-columns: 1fr;
    }

    .filter-panel form {
        grid-template-columns: repeat(2, minmax(0, 1fr));
    }

    .filter-actions {
        grid-column: 1 / -1;
        align-items: center;
    }
}

@media (max-width: 860px) {
    .site-header {
        padding: 10px 10px 0;
    }

    .nav-wrap {
        border-radius: 16px;
        position: relative;
    }

    .menu-toggle {
        display: inline-flex;
    }

    .site-nav {
        display: none;
        position: absolute;
        left: 10px;
        right: 10px;
        top: calc(100% + 10px);
        border: 1px solid var(--line);
        border-radius: 14px;
        background: #fff;
        box-shadow: var(--shadow);
        padding: 10px;
        z-index: 10;
    }

    .site-nav.open {
        display: block;
    }

    .nav-list {
        flex-direction: column;
        align-items: stretch;
        gap: 4px;
    }

    .nav-item.has-dropdown:hover .dropdown-menu {
        opacity: 1;
        visibility: visible;
        transform: none;
    }

    .dropdown-menu {
        position: static;
        opacity: 1;
        visibility: visible;
        transform: none;
        box-shadow: none;
        margin-top: 6px;
        border-style: dashed;
    }

    .header-cta {
        display: none;
    }

    .hero-grid,
    .single-wrap,
    .page-card,
    .form-wrap {
        padding: 20px;
    }

    .filter-panel form,
    .form-grid {
        grid-template-columns: 1fr;
    }

    .stat-grid {
        grid-template-columns: 1fr;
    }
}

@media (max-width: 520px) {
    .page-shell {
        padding: 0 10px 34px;
    }

    .section {
        margin-bottom: 18px;
    }

    .hero-title,
    .single-title {
        line-height: 1.05;
    }

    .btn-main,
    .btn-alt,
    .btn-ghost {
        width: 100%;
    }

    .hero-actions,
    .callout .btn-group {
        width: 100%;
    }

    .card,
    .single-wrap,
    .hero,
    .footer-wrap {
        border-radius: 16px;
    }
}
