* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: "Inter", sans-serif;
    background: #f8f6f3;
    color: #231f20;
    line-height: 1.7;
}
main{
    padding:100px 0;
}
/* =========================
   LAYOUT
========================= */
.container,
.practice-container {
    width: 100%;
    max-width: 1200px;
    margin: auto;
}
/* =========================
   back to home icon
========================= */
.practice-hero__back{
    display:inline-flex;
    align-items:center;
    gap:10px;
    color:#00A499;
    text-decoration:none;
    font-family:monospace;
    font-size:16px;
    letter-spacing:0.5px;
    transition:color .3s ease;
    margin-bottom:40px;
}

.practice-hero__back:hover{
    color:#333333;
}

.practice-hero__back:hover .icon--arrow-left{
    transform:translateX(-3px);
}

.practice-hero__back .icon{
    width:14px;
    height:14px;
    stroke:currentColor;
    fill:none;
    transition:all .3s ease;
}

.practice-hero__back span{
    transition:all .3s ease;
}

.practice-hero__back:hover .icon{
    transform:translateX(-3px);
}
/* =========================
   HERO SECTION
========================= */
.practice-hero {
    position: relative;
    overflow: hidden;
    display: flex;
    align-items: center;
    padding: 90px 0 80px;
    background: #f8f6f3;
    border-bottom: 1px solid #ddd;
}

.practice-hero__content {
    max-width: 850px;
}

.practice-hero__title  {
    max-width: 56rem;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(3rem, 5vw, 4.5rem);
    font-weight: 500;
    line-height: .98;
    letter-spacing: -.025em;
    padding-bottom: 30px;
}

.practice-hero__intro,
.box-text-content p {
    max-width: 800px;
    font-size: 18px;
    color: #555;
}

.practice-hero__intro {
    margin-top: 20px;
}

/* =========================
   LINKS
========================= */
.practice-hero-anchor,
em {
    color: #00a499;
}

.practice-hero-anchor {
    text-decoration: none;
    transition: .3s;
}

.practice-hero-anchor:hover {
    color: #00867d;
}

em {
    font-style: normal;
}

/* =========================
   READ MORE
========================= */
#moreText {
    display: none;
}

#moreText.show {
    display: block;
}

.read-more-btn-click {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    margin-top: 10px;
    color: #00a499;
    text-decoration: none;
    font-weight: 600;
    border-bottom: 1px solid #00a499;
    transition: .3s;
}

.read-more-btn-click:hover {
    color: #131313;
    border-color: #131313;
}

/* =========================
   BUTTONS
========================= */
.practice-hero__actions {
    display: flex;
    flex-wrap: wrap;
    gap: 15px;
    padding-top: 30px;
}

.practice-hero__button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    padding: 15px 28px;
    text-decoration: none;
    font-weight: 600;
    transition: .3s;
}

.practice-hero__button--primary {
    background: #00a499;
    color: #111;
}

.practice-hero__button--primary:hover {
    background: #000;
    color: #fff;
    transform: translateY(-2px);
}

.practice-hero__button--secondary {
    border: 1px solid #111;
    color: #111;
}

.practice-hero__button--secondary:hover {
    background: #111;
    color: #fff;
}

/* =========================
   HEADINGS
========================= */
.p-70{
    padding-top:70px;
}
.lawyer-txt h2,
.lawyer-bottom-text h2 {
    max-width: 55rem;
    font-family: "Cormorant Garamond", serif;
    font-size: clamp(2.2rem, 4vw, 3.4rem);
    font-weight: 500;
    line-height: 1;
    color: #231f20;
}

/* =========================
   GRID
========================= */
.grid-box-container {
    display: grid;
    grid-template-columns: repeat(2, minmax(320px, 1fr));
    gap: 30px;
    padding-top: 30px;
}

.box-container {
    background: #f8f6f3;
    padding: 30px;
    border: 1px solid #d9d4d0;
    border-radius: 12px;
    box-shadow: 0 8px 25px rgba(0, 0, 0, .03);
    transition: .3s;
}

.box-container:hover {
    transform: translateY(-5px);
    box-shadow: 0 12px 35px rgba(0, 0, 0, .08);
}

.box-text-content h3 {
    color: #00a499;
    font-size: 1.75rem;
    line-height: 1.3;
    margin-bottom: 20px;
}

.lawyer-bottom-text {
    padding-top: 70px;
}

/* =========================
   TABLET
========================= */
@media (max-width:768px) {

    .practice-hero {
        padding: 60px 0;
    }

    .practice-hero__actions {
        flex-direction: column;
    }

    .practice-hero__button {
        width: 100%;
    }

    .box-container {
        padding: 24px;
    }

    .box-text-content h3 {
        font-size: 1.5rem;
    }

    .practice-hero__intro,
    .box-text-content p {
        font-size: 1rem;
    }
}

/* =========================
   MOBILE
========================= */
@media (max-width:480px) {

    .container,
    .practice-container {
        padding: 0 15px;
    }

    .practice-hero {
        padding: 50px 0;
    }

    .practice-hero__title {
        font-size: 3rem;
    }

    .grid-box-container {
    display: grid;
    grid-template-columns: repeat(1, minmax(320px, 1fr));
    }

    .lawyer-txt h2,
    .lawyer-bottom-text h2 {
        font-size: 1.8rem;
    }

    .box-container {
        padding: 20px;
    }
}